Fix comment

This commit is contained in:
alesapin 2020-06-22 16:31:16 +03:00
parent afcf63ad89
commit b4d89bd124

View File

@ -223,8 +223,9 @@ def test_postgres_insert(started_cluster):
conn = get_postgres_conn() conn = get_postgres_conn()
conn.cursor().execute("truncate table clickhouse.test_table") conn.cursor().execute("truncate table clickhouse.test_table")
# Also test with Servername containing '.' and '-' symbols (see links in docker-compose template in helpers/cluster.py) # Also test with Servername containing '.' and '-' symbols (defined in
# This is needed to check parsing, validation and reconstruction of connection string. # postgres .yml file). This is needed to check parsing, validation and
# reconstruction of connection string.
node1.query("create table pg_insert (column1 UInt8, column2 String) engine=ODBC('DSN=postgresql_odbc;Servername=postgre-sql.local', 'clickhouse', 'test_table')") node1.query("create table pg_insert (column1 UInt8, column2 String) engine=ODBC('DSN=postgresql_odbc;Servername=postgre-sql.local', 'clickhouse', 'test_table')")
node1.query("insert into pg_insert values (1, 'hello'), (2, 'world')") node1.query("insert into pg_insert values (1, 'hello'), (2, 'world')")