From bf1c1d7848c087c99fb30a67657a5ec3197f7f32 Mon Sep 17 00:00:00 2001 From: Florent Viel Date: Wed, 24 Jan 2024 09:21:24 +0100 Subject: [PATCH] create ltree extension in pg setup for tests --- testsetup/postgresql_setup.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/testsetup/postgresql_setup.sql b/testsetup/postgresql_setup.sql index 51414863c..837c978ac 100644 --- a/testsetup/postgresql_setup.sql +++ b/testsetup/postgresql_setup.sql @@ -1,5 +1,6 @@ -- Create extensions and types. create extension hstore; +create extension ltree; create domain uint64 as numeric(20,0); -- Create users for different types of connections and authentication.