lowka commented on code in PR #5380: URL: https://github.com/apache/ignite-3/pull/5380#discussion_r1990905652
########## modules/catalog-dsl/src/integrationTest/java/org/apache/ignite/internal/catalog/ItCatalogDslTest.java: ########## @@ -398,6 +405,48 @@ public void createAndGetDefinitionTest() { } } + @Test + public void tableDefinitionWithIndexes() { + sql("CREATE TABLE t (id int primary key, col1 varchar, col2 int)"); + sql("CREATE INDEX t_sorted ON t USING SORTED (col2 DESC, col1)"); + sql("CREATE INDEX t_hash ON t USING HASH (col1, col2)"); + + TableDefinition table = catalog().tableDefinition(QualifiedName.of("PUBLIC", "t")); + + List<IndexDefinition> indexes = table.indexes(); + assertNotNull(indexes); + + Map<String, IndexDefinition> indexMap = indexes.stream() + .collect(Collectors.toMap(IndexDefinition::name, Function.identity())); + + assertEquals(Set.of("T_SORTED", "T_HASH"), indexMap.keySet()); + + // primary index + { + assertEquals(IndexType.HASH, table.primaryKeyType()); + assertEquals(List.of(ColumnSorted.column("ID")), table.primaryKeyColumns()); + } + // sorted index + { + IndexDefinition index = indexMap.get("T_SORTED"); + assertEquals("T_SORTED", index.name()); Review Comment: Thanks. Fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org