We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a regression after #17710 merge.
@Test public void test2() { String tableName = "test" + randomNameSuffix(); Document document = new Document() .append("_id", new ObjectId("5126bbf64aed4daf9e2ab771")) .append("dotted.field", "foo") .append("dotted", new Document("field", "bar")); client.getDatabase("test").getCollection(tableName).insertOne(document); assertThat(query("SELECT \"dotted.field\", dotted.field FROM test." + tableName)) .skippingTypesCheck() .matches("VALUES (NULL, NULL)"); assertUpdate("DROP TABLE test." + tableName); }
Expected: Dereference field dotted.field should return bar
dotted.field
bar
The text was updated successfully, but these errors were encountered:
Thanks, @findepi for pointing this out.
Sorry, something went wrong.
krvikash
No branches or pull requests
This is a regression after #17710 merge.
Expected: Dereference field
dotted.field
should returnbar
The text was updated successfully, but these errors were encountered: