Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2048834

Browse files
committed
fix sequence handling at receiver accidently broken in 881b2ada55
1 parent 99a9609 commit 2048834

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/ddl.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,14 @@ MtmProcessUtilityReciever(PlannedStmt *pstmt, const char *queryString,
575575
check_function_bodies = false;
576576
break;
577577

578+
case T_CreateSeqStmt:
579+
{
580+
CreateSeqStmt *stmt = (CreateSeqStmt *) parsetree;
581+
if (!MtmVolksWagenMode)
582+
AdjustCreateSequence(stmt->options);
583+
break;
584+
}
585+
578586
default:
579587
break;
580588
}

0 commit comments

Comments
 (0)