mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Update test.py
This commit is contained in:
parent
e2770c5093
commit
f1868114a6
@ -282,7 +282,7 @@ def test_postgres_schema(started_cluster):
|
||||
cursor.execute('INSERT INTO test_schema.test_table SELECT i, i FROM generate_series(0, 99) as t(i)')
|
||||
|
||||
node1.query('''
|
||||
DROP DICTIONARY postgres_dict;
|
||||
DROP DICTIONARY IF EXISTS postgres_dict;
|
||||
CREATE DICTIONARY postgres_dict (id UInt32, value UInt32)
|
||||
PRIMARY KEY id
|
||||
SOURCE(POSTGRESQL(
|
||||
@ -312,7 +312,7 @@ def test_predefined_connection_configuration(started_cluster):
|
||||
cursor.execute('INSERT INTO test_table SELECT i, i FROM generate_series(0, 99) as t(i)')
|
||||
|
||||
node1.query('''
|
||||
DROP DICTIONARY postgres_dict;
|
||||
DROP DICTIONARY IF EXISTS postgres_dict;
|
||||
CREATE DICTIONARY postgres_dict (id UInt32, value UInt32)
|
||||
PRIMARY KEY id
|
||||
SOURCE(POSTGRESQL(NAME postgres1))
|
||||
|
Loading…
Reference in New Issue
Block a user