Skip to content

Commit 24201f3

Browse files
committed
Fix expected error message of BigQuery wildcard table
1 parent 4e425ed commit 24201f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/trino-bigquery/src/test/java/io/trino/plugin/bigquery/BaseBigQueryConnectorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ public void testWildcardTableWithDifferentColumnDefinition()
969969
assertQuery("DESCRIBE test.\"" + wildcardTable + "\"", "VALUES ('value', 'varchar', '', '')");
970970

971971
assertThat(query("SELECT * FROM test.\"" + wildcardTable + "\""))
972-
.failure().hasMessageContaining("Cannot read field of type INT64 as STRING Field: value");
972+
.failure().hasMessageContaining("Cannot read field of type INT64 as STRING");
973973
}
974974
finally {
975975
onBigQuery("DROP TABLE IF EXISTS test." + firstTable);

0 commit comments

Comments
 (0)