[CP] fix set wrong column flag for value desc

This commit is contained in:
obdev
2024-01-12 10:47:46 +00:00
committed by ob-robot
parent ed0c864bd0
commit 34d61532c4
2 changed files with 17 additions and 0 deletions

View File

@ -2631,6 +2631,8 @@ public:
inline bool has_table_alias_name() const { return column_flags_ & TABLE_ALIAS_NAME_FLAG; }
void set_column_flags(uint64_t column_flags) { column_flags_ = column_flags; }
void set_table_alias_name() { column_flags_ |= TABLE_ALIAS_NAME_FLAG; }
void set_table_part_key_column() { column_flags_ |= TABLE_PART_KEY_COLUMN_FLAG; }
void set_table_part_key_org_column() { column_flags_ |= TABLE_PART_KEY_COLUMN_ORG_FLAG; }
inline uint64_t get_column_flags() const { return column_flags_; }
inline const ObRawExpr *get_dependant_expr() const { return dependant_expr_; }
inline ObRawExpr *&get_dependant_expr() { return dependant_expr_; }