-
-
Notifications
You must be signed in to change notification settings - Fork 220
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
Unexpected error after deleting an index #7754
Comments
Regular users are commonly suggested to avoid (1) intermixing DDL and DML in a single transaction and (2) running DDL in concurrent environment. That said, I would still be good to have this issue resolved if possible. |
Why expression index is used in example ? Is it important ? |
Yes, it's important (either expression or partial index is required). |
The error message comes from here Lines 968 to 994 in 78f2097
|
Here is a simple example. Create the follow metadata:
Then in a new connection:
The problem is that is kinda inconsistent. For example, if i call some
select * from doc earlier
, the error disappearsBut this case is nothing compared to the next one. Same 3 calls, but now with two connections:
This is highly unexpected for regular users
Tested on the master branch (ffd31e3)
The text was updated successfully, but these errors were encountered: