Skip to content

Commit df2277f

Browse files
committed
Fix table name in ClickHouse test
1 parent 4375c0c commit df2277f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin/trino-clickhouse/src/test/java/io/trino/plugin/clickhouse/TestClickHouseConnectorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ public void testCharVarcharComparison()
346346
@Test
347347
public void testDifferentEngine()
348348
{
349-
String tableName = "test_add_column_" + randomNameSuffix();
349+
String tableName = "test_different_engine_" + randomNameSuffix();
350350
// MergeTree
351351
assertUpdate("CREATE TABLE " + tableName + " (id int NOT NULL, x VARCHAR) WITH (engine = 'MergeTree', order_by = ARRAY['id'])");
352352
assertThat(getQueryRunner().tableExists(getSession(), tableName)).isTrue();
@@ -379,7 +379,7 @@ public void testDifferentEngine()
379379
@Test
380380
public void testTableProperty()
381381
{
382-
String tableName = "test_add_column_" + randomNameSuffix();
382+
String tableName = "test_table_property_" + randomNameSuffix();
383383
// no table property, it should create a table with default Log engine table
384384
assertUpdate("CREATE TABLE " + tableName + " (id int NOT NULL, x VARCHAR)");
385385
assertThat(getQueryRunner().tableExists(getSession(), tableName)).isTrue();

0 commit comments

Comments
 (0)