Skip to content

Commit

Permalink
create explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHend committed Oct 9, 2024
1 parent 4fdd212 commit daee4ca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions test/expected/basic_usage.out
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
\set SHOW_CONTEXT never
CREATE EXTENSION pg_ivm;
CREATE EXTENSION timeseries CASCADE;
NOTICE: installing required extension "columnar"
NOTICE: installing required extension "pg_cron"
NOTICE: installing required extension "pg_partman"
CREATE EXTENSION pg_partman;
CREATE EXTENSION columnar;
CREATE EXTENSION pg_cron;
CREATE EXTENSION timeseries;
CREATE TABLE simple ();
SELECT enable_ts_table('simple');
ERROR: could not enable time-series enhancements
Expand Down
5 changes: 4 additions & 1 deletion test/sql/basic_usage.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
\set SHOW_CONTEXT never

CREATE EXTENSION pg_ivm;
CREATE EXTENSION pg_partman;
CREATE EXTENSION columnar;
CREATE EXTENSION pg_cron;

CREATE EXTENSION timeseries CASCADE;
CREATE EXTENSION timeseries;

CREATE TABLE simple ();
SELECT enable_ts_table('simple');
Expand Down

0 comments on commit daee4ca

Please sign in to comment.