-
Notifications
You must be signed in to change notification settings - Fork 590
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
DataGrip compatibility regression from v1.5.0 to v1.5.1 #14102
Comments
query log
|
import psycopg
connection = psycopg.connect(
host="127.0.0.1",
port=4566,
user="root",
password="",
dbname="dev",
)
cursor = connection.cursor()
cursor.execute('show transaction isolation level', prepare=True)
|
psql reproduce
|
Conclusion: The |
by the way, this may not only cause IDE error, spring application may also rise error when creating connection pool, revert to 14.0 will solve this problem |
v1.5.0 should not have such issue. Would you please give it a try? |
The fix will be included in v1.5.2 and v1.6.0. |
Describe the bug
Although we don't have official support for DataGrip, it is generally usable in v1.5.0. However, in v1.5.1, a new bug was introduced and we should fix it.
Error message/log
To Reproduce
No response
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
v1.5.1
Additional context
#10347
The text was updated successfully, but these errors were encountered: