diff options
Diffstat (limited to 'src/pl/plpython/sql/plpython_schema.sql')
| -rw-r--r-- | src/pl/plpython/sql/plpython_schema.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pl/plpython/sql/plpython_schema.sql b/src/pl/plpython/sql/plpython_schema.sql index 1f5ee6eaea..c346c40381 100644 --- a/src/pl/plpython/sql/plpython_schema.sql +++ b/src/pl/plpython/sql/plpython_schema.sql @@ -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 + ) ; |
