vci_always_fail_update_delete_vector.patch

text/x-patch

Filename: vci_always_fail_update_delete_vector.patch
Type: text/x-patch
Part: 0
Message: Re: [WIP]Vertical Clustered Index (columnar store extension) - take2

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: unified
File+
contrib/vci/storage/vci_ros_daemon.c 3 0
diff --git a/contrib/vci/storage/vci_ros_daemon.c b/contrib/vci/storage/vci_ros_daemon.c
index 59761703102..a94eac7d7ab 100644
--- a/contrib/vci/storage/vci_ros_daemon.c
+++ b/contrib/vci/storage/vci_ros_daemon.c
@@ -679,6 +679,9 @@ vci_executeROScommand(Oid targetIndexOid, char targetExecCommandFlag, int32 targ
 			INSTR_TIME_SUBTRACT(e_time, s_time);
 			elog(LOG, "finished ROS command \"%s\" (%.03f ms)", vci_GetRosCommandName(command),
 				 INSTR_TIME_GET_MILLISEC(e_time));
+
+			if (command == vci_rc_update_del_vec)
+				Assert(false);
 		}
 	}
 }