From ad2a4aecb4748f8c5280aabf65dae570a9529065 Mon Sep 17 00:00:00 2001 From: Hiroshi Saito Date: Wed, 14 May 2014 23:37:48 +0900 Subject: [PATCH] Fixed test/expected. --- test/expected/catalogfunctions.out | 5 +++++ test/expected/sampletables.out | 1 + 2 files changed, 6 insertions(+) diff --git a/test/expected/catalogfunctions.out b/test/expected/catalogfunctions.out index dba7d55..402cf4b 100644 --- a/test/expected/catalogfunctions.out +++ b/test/expected/catalogfunctions.out @@ -186,6 +186,11 @@ contrib_regression public testtab1 _SYSTEM SELECT YES contrib_regression public testtab1 _SYSTEM UPDATE YES contrib_regression public testtab1 _SYSTEM DELETE YES contrib_regression public testtab1 _SYSTEM REFERENCES YES +contrib_regression public testtab1 _SYSTEM INSERT YES +contrib_regression public testtab1 _SYSTEM SELECT YES +contrib_regression public testtab1 _SYSTEM UPDATE YES +contrib_regression public testtab1 _SYSTEM DELETE YES +contrib_regression public testtab1 _SYSTEM REFERENCES YES Result set: contrib_regression public testtab1 TABLE contrib_regression public testtab_fk TABLE diff --git a/test/expected/sampletables.out b/test/expected/sampletables.out index e4fcb71..8e9585b 100644 --- a/test/expected/sampletables.out +++ b/test/expected/sampletables.out @@ -1,5 +1,6 @@ -- This file creates some tables to be used in the tests CREATE TABLE testtab1 (id integer PRIMARY KEY, t varchar(20)); +NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "testtab1_pkey" for table "testtab1" INSERT INTO testtab1 VALUES (1, 'foo'); INSERT INTO testtab1 VALUES (2, 'bar'); INSERT INTO testtab1 VALUES (3, 'foobar'); -- 2.39.5