mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
black
This commit is contained in:
parent
f779fe3c0a
commit
6ec3bf40b1
@ -42,7 +42,8 @@ node = cluster.add_instance(
|
||||
main_configs=["configs/grpc_config.xml"],
|
||||
# Bug in TSAN reproduces in this test https://github.com/grpc/grpc/issues/29550#issuecomment-1188085387
|
||||
# second_deadlock_stack -- just ordinary option we use everywhere, don't want to overwrite it
|
||||
env_variables={"TSAN_OPTIONS": "report_atomic_races=0 second_deadlock_stack=1"},)
|
||||
env_variables={"TSAN_OPTIONS": "report_atomic_races=0 second_deadlock_stack=1"},
|
||||
)
|
||||
main_channel = None
|
||||
|
||||
|
||||
|
@ -42,7 +42,7 @@ node = cluster.add_instance(
|
||||
"configs/server-cert.pem",
|
||||
"configs/ca-cert.pem",
|
||||
],
|
||||
# Bug in TSAN reproduces in this test https://github.com/grpc/grpc/issues/29550#issuecomment-1188085387
|
||||
# Bug in TSAN reproduces in this test https://github.com/grpc/grpc/issues/29550#issuecomment-1188085387
|
||||
# second_deadlock_stack -- just ordinary option we use everywhere, don't want to overwrite it
|
||||
env_variables={"TSAN_OPTIONS": "report_atomic_races=0 second_deadlock_stack=1"},
|
||||
)
|
||||
|
@ -81,10 +81,12 @@ def create_mysql_table(conn, table_name):
|
||||
with conn.cursor() as cursor:
|
||||
cursor.execute(create_table_sql_template.format(table_name))
|
||||
|
||||
|
||||
def drop_mysql_table(conn, table_name):
|
||||
with conn.cursor() as cursor:
|
||||
cursor.execute(drop_table_sql_template.format(table_name))
|
||||
|
||||
|
||||
def get_postgres_conn(started_cluster):
|
||||
conn_string = "host={} port={} user='postgres' password='mysecretpassword'".format(
|
||||
started_cluster.postgres_ip, started_cluster.postgres_port
|
||||
@ -576,6 +578,7 @@ def test_sqlite_odbc_cached_dictionary(started_cluster):
|
||||
|
||||
node1.query("SYSTEM RELOAD DICTIONARIES")
|
||||
|
||||
|
||||
def test_postgres_odbc_hashed_dictionary_with_schema(started_cluster):
|
||||
skip_test_msan(node1)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user