diff --git a/test/c/test_substrait_c_api.cpp b/test/c/test_substrait_c_api.cpp index e7a7c36..ed79cf7 100644 --- a/test/c/test_substrait_c_api.cpp +++ b/test/c/test_substrait_c_api.cpp @@ -288,7 +288,7 @@ TEST_CASE("Test C DeleteRows with Substrait API", "[substrait-api]") { ExecuteViaSubstraitJSON(con, "DELETE FROM employees WHERE salary < 80000"); auto result = ExecuteViaSubstrait(con, "SELECT * from employees"); - REQUIRE(CHECK_COLUMN(result, 0, {1, 2, 4})); + REQUIRE(CHECK_COLUMN(result, 0, {1, 2, 3})); REQUIRE(CHECK_COLUMN(result, 1, {"John Doe", "Jane Smith", "Bob Brown"})); REQUIRE(CHECK_COLUMN(result, 2, {1, 2, 3})); REQUIRE(CHECK_COLUMN(result, 3, {120000, 80000, 95000}));