chatdesk-ui/postgres_15.8.1.044/nix/tests/expected/hypopg.out

15 lines
224 B
Plaintext

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