mirror of
https://github.com/postgres/postgres.git
synced 2025-12-12 02:37:31 +03:00
Allow PL/python to return composite types and result sets
Sven Suursoho
This commit is contained in:
@@ -42,3 +42,13 @@ CREATE INDEX xsequences_pid_idx ON xsequences(pid) ;
|
||||
CREATE TABLE unicode_test (
|
||||
testvalue text NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE table_record (
|
||||
first text,
|
||||
second int4
|
||||
) ;
|
||||
|
||||
CREATE TYPE type_record AS (
|
||||
first text,
|
||||
second int4
|
||||
) ;
|
||||
|
||||
Reference in New Issue
Block a user