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


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/schema/TableDescriptor.java:
##########
@@ -41,6 +41,9 @@ public interface TableDescriptor extends 
InitializerExpressionFactory, Iterable<
      */
     RelDataType rowType(IgniteTypeFactory factory, @Nullable ImmutableBitSet 
usedColumns);
 
+    /** Returns type of the row excluding all {@link ColumnDescriptor#hidden() 
hidden} columns. */
+    RelDataType rowTypeSansHidden();

Review Comment:
   this means "without" or "ignoring" 
([link](https://dictionary.cambridge.org/dictionary/english/sans) to 
dictionary). This term is used in core calcite in a few places:
   * `SqlTypeUtil#equalSansNullability(org.apache.calcite.rel.type.RelDataType, 
org.apache.calcite.rel.type.RelDataType)`
   * `RelTraitSet#isDefaultSansConvention`
   * `RelDataType#equalsSansFieldNames`
   * `SqlValidatorNamespace#getRowTypeSansSystemColumns`



-- 
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