-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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 expressions with ":". #1134
Comments
I kind of introduced this parsing half way. Now you are able to parse it, but the deparser is not there. Producing the source SQL results in the point way again. |
@LonwoLonwo Does it work? |
Hello, @wumpz |
Closed on behalf of the author. |
we are facing a problem here: in any modern RDBMS -- DataBricks/Snowflake
SELECT c1:price j
FROM VALUES('{ "price": 5 }') AS T(c1);
-- Postgres
SELECT c1::JSON -> 'price' j
FROM VALUES('{ "price": 5 }') AS T(c1); It is impossible to support both at the same time, but we could apply a Configuration Switch, e. g. an |
I have solved it by allowing |
Describe the bug
Some Databases, like Informix, have a sign ":" as delimiter name of the database and schema name.
https://www.ibm.com/support/knowledgecenter/en/SSGU8G_14.1.0/com.ibm.sqls.doc/ids_sqs_1652.htm
This is not a completely accurate link, but here the use of a colon is mentioned.
To Reproduce
Steps to reproduce the behavior:
use "SELECT * FROM stores_demo:informix.accounts;" with Informix database and get
dbeaver/dbeaver#11590
Expected behavior
Please add colon support as a separator between the database name and the schema name.
System
The text was updated successfully, but these errors were encountered: