korlov42 commented on code in PR #2752:
URL: https://github.com/apache/ignite-3/pull/2752#discussion_r1373097856


##########
modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/framework/TestBuilders.java:
##########
@@ -515,18 +761,27 @@ public ClusterBuilder end() {
             return parent;
         }
 
-        private TestTable build() {
-            TableDescriptorImpl tableDescriptor = new 
TableDescriptorImpl(columns, distribution);
+        private List<CatalogCommand> build() {
+            List<CatalogCommand> commands = new ArrayList<>(1 + 
indexBuilders.size());
 
-            List<IgniteIndex> indexes = indexBuilders.stream()
-                    .map(idx -> idx.build(tableDescriptor))
-                    .collect(Collectors.toList());
+            commands.add(
+                    CreateTableCommand.builder()
+                            .schemaName("PUBLIC")

Review Comment:
   honestly, I see no point in using different schemas... It's just a namespace 
that is used during name resolution only



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to