chatai/postgres_15.8.1.044/nix/tests/sql/hypopg.sql

14 lines
149 B
SQL

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;