diff --git a/pkg/cli/interactive_tests/test_demo_node_cmds.tcl b/pkg/cli/interactive_tests/test_demo_node_cmds.tcl index 07144090b8f5..7a14e2f3e282 100644 --- a/pkg/cli/interactive_tests/test_demo_node_cmds.tcl +++ b/pkg/cli/interactive_tests/test_demo_node_cmds.tcl @@ -41,12 +41,12 @@ send "\\demo shutdown 3\r" eexpect "node 3 has been shutdown" eexpect "defaultdb>" -send "select node_id, draining, decommissioning, membership from crdb_internal.gossip_liveness ORDER BY node_id;\r" -eexpect "1 | f | f | active" -eexpect "2 | f | f | active" -eexpect "3 | t | f | active" -eexpect "4 | f | f | active" -eexpect "5 | f | f | active" +send "select node_id, draining, membership from crdb_internal.kv_node_liveness ORDER BY node_id;\r" +eexpect "1 | f | active" +eexpect "2 | f | active" +eexpect "3 | t | active" +eexpect "4 | f | active" +eexpect "5 | f | active" eexpect "defaultdb>" # Cannot shut it down again. @@ -64,12 +64,12 @@ send "\\demo restart 3\r" eexpect "node 3 has been restarted" eexpect "defaultdb>" -send "select node_id, draining, decommissioning, membership from crdb_internal.gossip_liveness ORDER BY node_id;\r" -eexpect "1 | f | f | active" -eexpect "2 | f | f | active" -eexpect "3 | f | f | active" -eexpect "4 | f | f | active" -eexpect "5 | f | f | active" +send "select node_id, draining, membership from crdb_internal.kv_node_liveness ORDER BY node_id;\r" +eexpect "1 | f | active" +eexpect "2 | f | active" +eexpect "3 | f | active" +eexpect "4 | f | active" +eexpect "5 | f | active" eexpect "defaultdb>" # Try decommissioning commands