Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions nix/tests/expected/hypopg.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
create schema v;
create table v.samp(
id int
);
select 1 from hypopg_create_index($$
create index on v.samp(id)
$$);
?column?
----------
1
(1 row)

drop schema v cascade;
NOTICE: drop cascades to table v.samp
13 changes: 13 additions & 0 deletions nix/tests/sql/hypopg.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
create schema v;

create table v.samp(
id int
);

select 1 from hypopg_create_index($$
create index on v.samp(id)
$$);

drop schema v cascade;


Loading