diff options
| author | Marko Kreen | 2012-11-02 14:39:42 +0000 |
|---|---|---|
| committer | Marko Kreen | 2012-11-02 14:39:42 +0000 |
| commit | ea471f9ceee809f87bdb900a1632163d6df305e0 (patch) | |
| tree | b64ffa8cbbd2e92b1580ae2d508ac31a9bd4a562 | |
| parent | 746830721ad05baeb9e970308f6778433174537e (diff) | |
sql/londiste: add alternative output for regtests for first runskytools_3_1_2
Then will the groups created, which changes output.
| -rw-r--r-- | sql/londiste/expected/init_ext_1.out | 21 | ||||
| -rw-r--r-- | sql/londiste/expected/init_noext_1.out | 16 |
2 files changed, 37 insertions, 0 deletions
diff --git a/sql/londiste/expected/init_ext_1.out b/sql/londiste/expected/init_ext_1.out new file mode 100644 index 00000000..961da159 --- /dev/null +++ b/sql/londiste/expected/init_ext_1.out @@ -0,0 +1,21 @@ +\set ECHO off + upgrade_schema +---------------- + 2 +(1 row) + +create extension londiste from 'unpackaged'; +select array_length(extconfig, 1) as dumpable from pg_catalog.pg_extension where extname = 'londiste'; + dumpable +---------- + 4 +(1 row) + +drop extension londiste; +create extension londiste; +select array_length(extconfig, 1) as dumpable from pg_catalog.pg_extension where extname = 'londiste'; + dumpable +---------- + 4 +(1 row) + diff --git a/sql/londiste/expected/init_noext_1.out b/sql/londiste/expected/init_noext_1.out new file mode 100644 index 00000000..9e17c8f8 --- /dev/null +++ b/sql/londiste/expected/init_noext_1.out @@ -0,0 +1,16 @@ +\set ECHO off + upgrade_schema +---------------- + 0 +(1 row) + + upgrade_schema +---------------- + 0 +(1 row) + + upgrade_schema +---------------- + 2 +(1 row) + |
