We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c208ac commit 92f8026Copy full SHA for 92f8026
nix/tests/expected/hypopg.out
@@ -0,0 +1,14 @@
1
+create schema v;
2
+create table v.samp(
3
+ id int
4
+);
5
+select 1 from hypopg_create_index($$
6
+ create index on v.samp(id)
7
+$$);
8
+ ?column?
9
+----------
10
+ 1
11
+(1 row)
12
+
13
+drop schema v cascade;
14
+NOTICE: drop cascades to table v.samp
nix/tests/sql/hypopg.sql
@@ -0,0 +1,13 @@
0 commit comments