projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3373882
)
Fix trivial failure in rangefuncs test suite
author
Tomas Vondra
<
[email protected]
>
Sun, 17 Sep 2017 19:03:34 +0000
(21:03 +0200)
committer
Tomas Vondra
<
[email protected]
>
Sun, 17 Sep 2017 19:03:34 +0000
(21:03 +0200)
Commit
f7d1d581c950191a465b8483173f2ad69ae8fffe
converted a couple of
sequences to persistent (instead of temporary), but failed to update
the expected output.
src/test/regress/expected/rangefuncs.out
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/expected/rangefuncs.out
b/src/test/regress/expected/rangefuncs.out
index 6246d748092885d10c5fa3af6c486daec470e885..224260cf7c424c8675d68c0bc717e8b8541d4e3d 100644
(file)
--- a/
src/test/regress/expected/rangefuncs.out
+++ b/
src/test/regress/expected/rangefuncs.out
@@
-694,8
+694,8
@@
DROP FUNCTION foot(int);
DROP TABLE foo2;
DROP TABLE foo;
-- Rescan tests --
-CREATE
TEMPORARY
SEQUENCE foo_rescan_seq1;
-CREATE
TEMPORARY
SEQUENCE foo_rescan_seq2;
+CREATE SEQUENCE foo_rescan_seq1;
+CREATE SEQUENCE foo_rescan_seq2;
CREATE TYPE foo_rescan_t AS (i integer, s bigint);
CREATE FUNCTION foo_sql(int,int) RETURNS setof foo_rescan_t AS 'SELECT i, nextval(''foo_rescan_seq1'') FROM generate_series($1,$2) i;' LANGUAGE SQL;
-- plpgsql functions use materialize mode