mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Updated unique names for test to avoid same names by random numbers
This commit is contained in:
parent
918b8c4585
commit
c98a194b57
@ -300,10 +300,10 @@ def test_put_get_with_globs(cluster):
|
||||
|
||||
azure_query(
|
||||
node,
|
||||
f"CREATE TABLE test_{i}_{j} ({table_format}) Engine = AzureBlobStorage(azure_conf2, container='cont', blob_path='{path}', format='CSV')",
|
||||
f"CREATE TABLE test_put_{i}_{j} ({table_format}) Engine = AzureBlobStorage(azure_conf2, container='cont', blob_path='{path}', format='CSV')",
|
||||
)
|
||||
|
||||
query = f"insert into test_{i}_{j} VALUES {values}"
|
||||
query = f"insert into test_put_{i}_{j} VALUES {values}"
|
||||
azure_query(node, query)
|
||||
|
||||
azure_query(
|
||||
@ -332,9 +332,9 @@ def test_azure_glob_scheherazade(cluster):
|
||||
unique_num = random.randint(1, 10000)
|
||||
azure_query(
|
||||
node,
|
||||
f"CREATE TABLE test_{i}_{unique_num} ({table_format}) Engine = AzureBlobStorage(azure_conf2, container='cont', blob_path='{path}', format='CSV')",
|
||||
f"CREATE TABLE test_scheherazade_{i}_{unique_num} ({table_format}) Engine = AzureBlobStorage(azure_conf2, container='cont', blob_path='{path}', format='CSV')",
|
||||
)
|
||||
query = f"insert into test_{i}_{unique_num} VALUES {values}"
|
||||
query = f"insert into test_scheherazade_{i}_{unique_num} VALUES {values}"
|
||||
azure_query(node, query)
|
||||
|
||||
jobs.append(
|
||||
|
Loading…
Reference in New Issue
Block a user