Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void testSelectFailsForColumnName()
assertUpdate("INSERT INTO " + tableName + " VALUES ('test value')", 1);
// The storage API can't read the table, but query based API can read it
assertThat(query("SELECT * FROM " + tableName))
.failure().hasMessageMatching("(Cannot create read|Invalid Avro schema).*(Illegal initial character|Invalid name).*");
.failure().hasMessageMatching("(Cannot create read|Invalid Avro schema).*(Illegal initial character|Invalid characters in name).*");
assertThat(bigQuerySqlExecutor.executeQuery("SELECT * FROM " + tableName).getValues())
.extracting(field -> field.getFirst().getStringValue())
.containsExactly("test value");
Expand Down
Loading