lowka commented on code in PR #2100:
URL: https://github.com/apache/ignite-3/pull/2100#discussion_r1211726659
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/descriptors/TableDescriptor.java:
##########
@@ -88,6 +86,18 @@ public int engineId() {
return engineId;
}
+ public TableColumnDescriptor[] columns() {
+ return columns;
+ }
+
+ public boolean isKeyColumn(String name) {
+ return Arrays.binarySearch(primaryKeyColumns, name) >= 0;
Review Comment:
@AMashenkov I think there similar methods for checking whether in your or
Pavel's patches and I am going to use those after you patches get merged.
--
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]