@@ -6208,7 +6208,7 @@ public void testColumnName()
62086208 protected void testColumnName (String columnName , boolean delimited )
62096209 {
62106210 String nameInSql = toColumnNameInSql (columnName , delimited );
6211- String tableName = "tcn_ " + nameInSql .toLowerCase (ENGLISH ).replaceAll ("[^a-z0-9]" , "" ) + randomNameSuffix ();
6211+ String tableName = "test_column_ " + nameInSql .toLowerCase (ENGLISH ).replaceAll ("[^a-z0-9]" , "" ) + randomNameSuffix ();
62126212
62136213 try {
62146214 // TODO test with both CTAS *and* CREATE TABLE + INSERT, since they use different connector API methods.
@@ -6252,7 +6252,7 @@ public void testAddAndDropColumnName()
62526252 protected void testAddAndDropColumnName (String columnName , boolean delimited )
62536253 {
62546254 String nameInSql = toColumnNameInSql (columnName , delimited );
6255- String tableName = "tcn_ " + nameInSql .toLowerCase (ENGLISH ).replaceAll ("[^a-z0-9]" , "" ) + randomNameSuffix ();
6255+ String tableName = "test_add_drop_column_ " + nameInSql .toLowerCase (ENGLISH ).replaceAll ("[^a-z0-9]" , "" ) + randomNameSuffix ();
62566256
62576257 try {
62586258 assertUpdate (createTableSqlForAddingAndDroppingColumn (tableName , nameInSql ));
@@ -6296,7 +6296,7 @@ public void testRenameColumnName()
62966296 protected void testRenameColumnName (String columnName , boolean delimited )
62976297 {
62986298 String nameInSql = toColumnNameInSql (columnName , delimited );
6299- String tableName = "tcn_ " + nameInSql .replaceAll ("[^a-z0-9]" , "" ) + randomNameSuffix ();
6299+ String tableName = "test_rename_column_ " + nameInSql .replaceAll ("[^a-z0-9]" , "" ) + randomNameSuffix ();
63006300 // Use complex identifier to test a source column name when renaming columns
63016301 String sourceColumnName = "a;b$c" ;
63026302
@@ -7482,7 +7482,7 @@ private void testMaterializedViewColumnName(String columnName, boolean delimited
74827482 if (delimited ) {
74837483 nameInSql = "\" " + columnName .replace ("\" " , "\" \" " ) + "\" " ;
74847484 }
7485- String viewName = "tcn_ " + nameInSql .toLowerCase (ENGLISH ).replaceAll ("[^a-z0-9]" , "_" ) + "_" + randomNameSuffix ();
7485+ String viewName = "test_mv_column_ " + nameInSql .toLowerCase (ENGLISH ).replaceAll ("[^a-z0-9]" , "_" ) + "_" + randomNameSuffix ();
74867486
74877487 try {
74887488 assertUpdate ("CREATE MATERIALIZED VIEW " + viewName + " AS SELECT 'sample value' key, 'abc' " + nameInSql );
0 commit comments