Copyright © Cloud Software Group, Inc. All rights reserved. |
The wait_step table holds information about each step that is currently being waited for by a wait defined in the wait table.TABLE wait_step (
node_id INTEGER NOT NULL,
proc_id INTEGER NOT NULL,
wait_id NUMERIC(10) NOT NULL,
step_id NUMERIC(10) NOT NULL)
Number of the step that is being waited for, as defined (by the step_num column) in the status table.
This key enforces the DELETE CASCADE referential action.
The wait_step table contains one row for each for each step currently being waited for.
Copyright © Cloud Software Group, Inc. All rights reserved. |