diff options
Diffstat (limited to 'src/pl/plpython/sql/plpython_composite.sql')
-rw-r--r-- | src/pl/plpython/sql/plpython_composite.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/sql/plpython_composite.sql b/src/pl/plpython/sql/plpython_composite.sql index cee98f288d4..cb5fffeba9d 100644 --- a/src/pl/plpython/sql/plpython_composite.sql +++ b/src/pl/plpython/sql/plpython_composite.sql @@ -125,7 +125,7 @@ SELECT * FROM changing_test(); ALTER TABLE changing ADD COLUMN j integer; SELECT * FROM changing_test(); --- tables of composite types (not yet implemented) +-- tables of composite types CREATE FUNCTION composite_types_table(OUT tab table_record[], OUT typ type_record[] ) RETURNS SETOF record AS $$ yield {'tab': [['first', 1], ['second', 2]], |