-
Bug
-
Resolution: Done
-
Major
-
14.0
-
None
-
-
Undefined
If a temporary table is created implicitly then this table can not be dropped in the same scope.
begin select * into #temp from test_tables_pg.test_d limit 1; drop table #temp; select * into #temp from test_tables_pg.test_a limit 1; end ;;