8000 Sam/15 16 nix package, build and test of 15.8 and 16.3 by samrose · Pull Request #1266 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

Sam/15 16 nix package, build and test of 15.8 and 16.3 #1266

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

Merged
merged 10 commits into from
Oct 17, 2024
Prev Previous commit
Next Next commit
pg_partman test 15/16 compat
  • Loading branch information
olirice committed Oct 7, 2024
commit 91ec362374e3ec73ada1f7215daa2a0c2c0de236
5 changes: 4 additions & 1 deletion nix/tests/expected/pg_partman.out
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ select
from
information_schema.tables
where
table_schema = 'partman_test';
table_schema = 'partman_test'
order by
table_name,
table_type;
table_name | table_type
-----------------------------+------------
time_taptest_table | BASE TABLE
Expand Down
5 changes: 4 additions & 1 deletion nix/tests/sql/pg_partman.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ select
from
information_schema.tables
where
table_schema = 'partman_test';
table_schema = 'partman_test'
order by
table_name,
table_type;


select public.create_parent(
Expand Down
0