We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16db70c + 3b2942d commit 445dd4cCopy full SHA for 445dd4c
pg_query_state.c
@@ -618,7 +618,7 @@ pg_query_state(PG_FUNCTION_ARGS)
618
if (current_msg->result_code != QS_RETURNED)
619
continue;
620
621
- AssertState(current_msg->result_code == QS_RETURNED);
+ Assert(current_msg->result_code == QS_RETURNED);
622
623
qs_stack = deserialize_stack(current_msg->stack,
624
current_msg->stack_depth);
@@ -890,7 +890,7 @@ SendBgWorkerPids(void)
890
{
891
pid_t current_pid = lfirst_int(iter);
892
893
- AssertState(current_pid > 0);
+ Assert(current_pid > 0);
894
msg->pids[i++] = current_pid;
895
}
896
0 commit comments