From aa2bcfa48fc576fd28ebdd48d6f3cb4df5ce0372 Mon Sep 17 00:00:00 2001 From: Anshul Data Date: Tue, 19 Nov 2024 18:40:48 +0530 Subject: [PATCH] Test failure --- test/c/test_substrait_c_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}));