summaryrefslogtreecommitdiff
path: root/src/pl/plpython/expected/plpython_schema.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/plpython/expected/plpython_schema.out')
-rw-r--r--src/pl/plpython/expected/plpython_schema.out8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pl/plpython/expected/plpython_schema.out b/src/pl/plpython/expected/plpython_schema.out
index 727e4b83d92..1769ecb21fd 100644
--- a/src/pl/plpython/expected/plpython_schema.out
+++ b/src/pl/plpython/expected/plpython_schema.out
@@ -44,3 +44,11 @@ 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
+ ) ;