We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a463e commit 60fcb4cCopy full SHA for 60fcb4c
google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/StatementParserTest.java
@@ -1471,6 +1471,8 @@ public void testPostgreSQLReturningClause() {
1471
.hasReturningClause());
1472
assertTrue(
1473
parser.parse(Statement.of("insert into t select 2,3returning*")).hasReturningClause());
1474
+ assertTrue(
1475
+ parser.parse(Statement.of("insert into t1 select 10.returning*")).hasReturningClause());
1476
}
1477
1478
private void assertUnclosedLiteral(String sql) {
0 commit comments