This is an automated email from the ASF dual-hosted git repository.

tkalkirill pushed a commit to branch ignite-28223-add-rowid
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit fc725daf8a616854f406a318412d76f35c79e5f6
Author: Kirill Tkalenko <[email protected]>
AuthorDate: Fri Mar 20 19:34:52 2026 +0300

    IGNITE-28223-add-rowid wip
---
 .../processors/query/calcite/integration/RowIdPseudoColumnTest.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/RowIdPseudoColumnTest.java
 
b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/RowIdPseudoColumnTest.java
index eee173feb38..f14f064ab9d 100644
--- 
a/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/RowIdPseudoColumnTest.java
+++ 
b/modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/RowIdPseudoColumnTest.java
@@ -73,6 +73,7 @@ public class RowIdPseudoColumnTest extends 
AbstractBasicIntegrationTest {
 
         // TODO: IGNITE-28223-add-rowid Вот тут теперь падает и можно дальше 
двигать
         assertQuery("select id, name, rowid from PUBLIC.PERSON where rowid = 
'0'")
+            .columnNames("ID", "NAME", "ROWID")
             .matches(QueryChecker.containsIndexScan("PUBLIC", "PERSON", 
"_key_PK"))
             .returns(0, "foo0", "0")
             .check();

Reply via email to