Docs: Correct parameter name in MaterializedPostgres example

This commit is contained in:
Robert Schulze 2023-08-21 13:24:57 +00:00
parent b074e44c1b
commit 5783c07e4f
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -13,7 +13,7 @@ If more than one table is required, it is highly recommended to use the [Materia
``` sql
CREATE TABLE postgresql_db.postgresql_replica (key UInt64, value UInt64)
ENGINE = MaterializedPostgreSQL('postgres1:5432', 'postgres_database', 'postgresql_replica', 'postgres_user', 'postgres_password')
ENGINE = MaterializedPostgreSQL('postgres1:5432', 'postgres_database', 'postgresql_table', 'postgres_user', 'postgres_password')
PRIMARY KEY key;
```