Add support for Alter Statistics and Set Statistics#1227
Conversation
|
Thanks for the PR.
Lastly, as of now, SQLancer is adding support for features in v13 - #1072 . Also, there is already a PR for |
The changes are good and the 2 errors seem required too. @yaojiejia - Any chances you're using a non-v13 postgres build to test these? |
Yep I think that is the case, I have been using v17 to test these and every time I get the force parallel mode issues. Just revert my local back to 13, so it should be good now. |
I think this is still part of the PR? Anyway, I'm merging this for now to not block progress. |
Add support for altering and setting statistics.
Force_parallel_mode is deprecated and has been renamed to debug_parallel_query, therefore, I commented it out.
Read more: https://www.postgresql.org/docs/16/release-16.html
I think postgres has a limitation where "exclude" constraints cannot be used together with partition keys that include expressions, therefore I added some errors handling in the
PostgresCommonApologize for putting all these in a single issue. Will make sure other issues are separated in the future.
Thanks!