File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
java-spanner/google-cloud-spanner/src/test/java/com/google/cloud/spanner/it Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1717package com .google .cloud .spanner .it ;
1818
1919import static com .google .cloud .spanner .testing .EmulatorSpannerHelper .isUsingEmulator ;
20+ import static com .google .cloud .spanner .testing .ExperimentalHostHelper .isExperimentalHost ;
2021import static com .google .common .base .Strings .isNullOrEmpty ;
2122import static com .google .common .truth .Truth .assertThat ;
2223import static java .util .Arrays .asList ;
@@ -143,6 +144,9 @@ public void badQuery() {
143144 exception .getMessage ().contains ("column \" apples\" does not exist" ));
144145 // See https://www.postgresql.org/docs/current/errcodes-appendix.html
145146 // '42703' == undefined_column
147+ assumeFalse (
148+ "Skipping PGErrorCode check on experimental host due to b/473270453" ,
149+ isExperimentalHost ());
146150 assertEquals ("42703" , exception .getPostgreSQLErrorCode ());
147151 } else {
148152 assertTrue (
You can’t perform that action at this time.
0 commit comments