diff options
Diffstat (limited to 'src/pl/tcl/sql/pltcl_queries.sql')
-rw-r--r-- | src/pl/tcl/sql/pltcl_queries.sql | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pl/tcl/sql/pltcl_queries.sql b/src/pl/tcl/sql/pltcl_queries.sql index 71c1238bd20..7390de6bd6b 100644 --- a/src/pl/tcl/sql/pltcl_queries.sql +++ b/src/pl/tcl/sql/pltcl_queries.sql @@ -117,12 +117,6 @@ select tcl_argisnull(null); insert into trigger_test(test_argisnull) values(true); select trigger_data(); --- Test spi_lastoid primitive -create temp table t1 (f1 int); -select tcl_lastoid('t1'); -create temp table t2 (f1 int) with oids; -select tcl_lastoid('t2') > 0; - -- test some error cases create function tcl_error(out a int, out b int) as $$return {$$ language pltcl; select tcl_error(); |