mirror of
https://github.com/postgres/postgres.git
synced 2025-12-07 12:02:30 +03:00
Fix for breakage of C-coded SRFs, from Joe Conway.
This commit is contained in:
@@ -1,3 +1,15 @@
|
||||
SELECT * FROM pg_settings WHERE name LIKE 'enable%';
|
||||
name | setting
|
||||
------------------+---------
|
||||
enable_hashjoin | on
|
||||
enable_indexscan | on
|
||||
enable_mergejoin | on
|
||||
enable_nestloop | on
|
||||
enable_seqscan | on
|
||||
enable_sort | on
|
||||
enable_tidscan | on
|
||||
(7 rows)
|
||||
|
||||
CREATE TABLE foo2(fooid int, f2 int);
|
||||
INSERT INTO foo2 VALUES(1, 11);
|
||||
INSERT INTO foo2 VALUES(2, 22);
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
SELECT * FROM pg_settings WHERE name LIKE 'enable%';
|
||||
|
||||
CREATE TABLE foo2(fooid int, f2 int);
|
||||
INSERT INTO foo2 VALUES(1, 11);
|
||||
INSERT INTO foo2 VALUES(2, 22);
|
||||
|
||||
Reference in New Issue
Block a user