Skip to content

Commit 627cd16

Browse files
committed
Fix bug with packaged table created and used in uncommitted transaction
1 parent 6417667 commit 627cd16

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/dsql/StmtNodes.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3009,7 +3009,6 @@ StmtNode* EraseNode::dsqlPass(DsqlCompilerScratch* dsqlScratch)
30093009

30103010
if (relation->dsqlName.schema.hasData() ||
30113011
relation->dsqlName.package.hasData() ||
3012-
!dsqlScratch->getLocalTable(relation->dsqlName.object) ||
30133012
dsqlCursorName.hasData())
30143013
{
30153014
dsqlScratch->qualifyExistingName(relation->dsqlName, obj_relation);
@@ -8575,7 +8574,6 @@ StmtNode* ModifyNode::internalDsqlPass(DsqlCompilerScratch* dsqlScratch, bool up
85758574

85768575
if (relation->dsqlName.schema.hasData() ||
85778576
relation->dsqlName.package.hasData() ||
8578-
!dsqlScratch->getLocalTable(relation->dsqlName.object) ||
85798577
dsqlCursorName.hasData())
85808578
{
85818579
dsqlScratch->qualifyExistingName(relation->dsqlName, obj_relation);

0 commit comments

Comments
 (0)