mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Add ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov.
This commit is contained in:
16
contrib/ltree/ltreetest.sql
Normal file
16
contrib/ltree/ltreetest.sql
Normal file
@ -0,0 +1,16 @@
|
||||
create table test ( path ltree);
|
||||
insert into test values ('Top');
|
||||
insert into test values ('Top.Science');
|
||||
insert into test values ('Top.Science.Astronomy');
|
||||
insert into test values ('Top.Science.Astronomy.Astrophysics');
|
||||
insert into test values ('Top.Science.Astronomy.Cosmology');
|
||||
insert into test values ('Top.Hobbies');
|
||||
insert into test values ('Top.Hobbies.Amateurs_Astronomy');
|
||||
insert into test values ('Top.Collections');
|
||||
insert into test values ('Top.Collections.Pictures');
|
||||
insert into test values ('Top.Collections.Pictures.Astronomy');
|
||||
insert into test values ('Top.Collections.Pictures.Astronomy.Stars');
|
||||
insert into test values ('Top.Collections.Pictures.Astronomy.Galaxies');
|
||||
insert into test values ('Top.Collections.Pictures.Astronomy.Astronauts');
|
||||
create index path_gist_idx on test using gist(path);
|
||||
create index path_idx on test using btree(path);
|
Reference in New Issue
Block a user