From f016bb563c76526b1931ac48ab4c6b545d37d40c Mon Sep 17 00:00:00 2001 From: go-jet Date: Wed, 17 Jul 2019 11:10:00 +0200 Subject: [PATCH] Add northwind db. Test fix. --- tests/init/data/northwind.sql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/init/data/northwind.sql b/tests/init/data/northwind.sql index 7b2711e..8416b4e 100644 --- a/tests/init/data/northwind.sql +++ b/tests/init/data/northwind.sql @@ -1,7 +1,6 @@ -- -- PostgreSQL database dump -- -SET search_path = northwind; SET statement_timeout = 0; SET lock_timeout = 0; @@ -16,6 +15,11 @@ SET default_tablespace = ''; SET default_with_oids = false; +DROP SCHEMA IF EXISTS northwind CASCADE; + +CREATE SCHEMA northwind; + +SET search_path = northwind; --- --- drop tables