diff options
author | Bruce Momjian | 2007-11-11 03:25:35 +0000 |
---|---|---|
committer | Bruce Momjian | 2007-11-11 03:25:35 +0000 |
commit | 926bbab44832ae2763392077ecefa029d14c8544 (patch) | |
tree | e70fd1806e8a04b019808e1c71428568eb900f8c /contrib/ltree/ltreetest.sql | |
parent | 541ff409cc341ce1e0212fc6a7d67eef6709b6b4 (diff) |
Make /contrib install/uninstall script consistent:
remove transactions
use create or replace function
make formatting consistent
set search patch on first line
Add documentation on modifying *.sql to set the search patch, and
mention that major upgrades should still run the installation scripts.
Some of these issues were spotted by Tom today.
Diffstat (limited to 'contrib/ltree/ltreetest.sql')
-rw-r--r-- | contrib/ltree/ltreetest.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/ltree/ltreetest.sql b/contrib/ltree/ltreetest.sql index eea5c475ee9..4df3eae9f98 100644 --- a/contrib/ltree/ltreetest.sql +++ b/contrib/ltree/ltreetest.sql @@ -1,3 +1,6 @@ +-- Adjust this setting to control where the objects get created. +SET search_path = public; + CREATE TABLE test ( path ltree); INSERT INTO test VALUES ('Top'); INSERT INTO test VALUES ('Top.Science'); |