Exclude tables (and related indexes) owned by extensions#190
Exclude tables (and related indexes) owned by extensions#190bplunkett-stripe merged 2 commits intostripe:mainfrom
Conversation
|
It's unfortunate our testing mixed this! Do you want to try to update our acceptance tests to spot this? One thought I have:
|
bplunkett-stripe
left a comment
There was a problem hiding this comment.
Awesome! See comment about testing
|
Hum, unfortunately postgis is dependent on the latest postgres version, when I add it to the Docker file, postgres16 is installed / used, even in I checked for build-in extensions that would add some tables in the public schema, but didn't find any obvious ones. Would it be fine to skip tests on that one? #127 had the same issue ^^' |
|
Looks like you need to re-generate the queries! It seems like your local sqlc is a different version, so you only need to commit probably a change in version number. You can alternatively install sqlc 1.18 or mount the docker image to your file system! |
Co-authored-by: Bryce Plunkett <130488190+bplunkett-stripe@users.noreply.github.com>
Should be fixed :) |
bplunkett-stripe
left a comment
There was a problem hiding this comment.
Sweet! Going to go ahead and merge!
Description
This PR is similar to #127, but for tables and indexes generated by extensions.
Motivation
I ran into issues with postgis who is creating such tables, this will just ingore them as they are handled by the normal create/delete extension statements.
Testing
Tested locally with postgis :)