-
Notifications
You must be signed in to change notification settings - Fork 695
New issue
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
Support quotes when using schema in the tablename #1710
Comments
It is possible to just change the name to |
@gel-hidden Changes were made recently to object TestTable : Table("tester.\"MyTable\"") { //... }
object TestTable : Table("\"Tester\".\"MyTable\"") { //... }
// both ways work (create, insert, select, drop) Please confirm whether this issue persists for you with current version 0.44.0. |
If the issue persists, please consider reopening this issue on YouTrack with the details requested above, so we can attempt to investigate further. |
This issue does not persist for 0.44.0. |
The function
String.isAlreadyQuoted()
inIdentifierManagerApi
uses the following logic:Which does not work for
schema."MyTable"
.The text was updated successfully, but these errors were encountered: