Skip to content

Commit d40cc8b

Browse files
encimajfroche
authored andcommitted
add tests for pg_partman
1 parent 1a34fdd commit d40cc8b

File tree

4 files changed

+117
-23
lines changed

4 files changed

+117
-23
lines changed

migrations/schema-15.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ CREATE EXTENSION IF NOT EXISTS pg_graphql WITH SCHEMA graphql;
8787

8888
COMMENT ON EXTENSION pg_graphql IS 'pg_graphql: GraphQL support';
8989

90+
CREATE SCHEMA partman;
91+
CREATE EXTENSION IF NOT EXISTS pg_partman WITH SCHEMA partman;
92+
9093

9194
--
9295
-- Name: pg_stat_statements; Type: EXTENSION; Schema: -; Owner: -
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
BEGIN;
2+
create schema if not exists "partman";
3+
create extension if not exists pg_partman with schema "partman";
4+
ROLLBACK;

migrations/tests/extensions/test.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@
2828
\ir 27-pg_repack.sql
2929
\ir 28-pgvector.sql
3030
\ir 29-pg_tle.sql
31+
\ir 30-pg_partman.sql

0 commit comments

Comments
 (0)