Github user DaveBirdsall commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1503#discussion_r179534230
--- Diff: core/sql/exp/exp_attrs.h ---
@@ -584,9 +587,10 @@ class Attributes : public NAVersionedObject
CASEINSENSITIVE_ = 0x0400, // caseinsensitive char/varchar datatype
- FORCE_FIXED_ = 0x0800 // Force this attribute to be treated as
fixed
+ FORCE_FIXED_ = 0x0800, // Force this attribute to be treated
as fixed
// in an aligned row. Used by
HashGroupby for
// varchar aggregates
+ LENGTH_IN_KB_ =0x1000 // Indicates length is in KB
--- End diff --
What is the length if it is not in KB?
---