We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a12b08 commit e0477dbCopy full SHA for e0477db
1 file changed
concurrent.c
@@ -96,6 +96,14 @@ pg_rewrite_process_concurrent_changes(EState *estate,
96
DecodingOutputState *dstate;
97
bool done;
98
99
+ /*
100
+ * Some arguments are specific to partitioned table, some to
101
+ * non-partitioned one. XXX Is some refactoring needed here, such as using
102
+ * an union?
103
+ */
104
+ Assert((ident_index && ind_slot && partitions == NULL && proute == NULL) ||
105
+ (ident_index == NULL && ind_slot == NULL && partitions && proute));
106
+
107
dstate = (DecodingOutputState *) ctx->output_writer_private;
108
done = false;
109
while (!done)
0 commit comments