summaryrefslogtreecommitdiff
path: root/sql/field.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/field.h')
-rw-r--r--sql/field.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/field.h b/sql/field.h
index 0fa577dab96..81e10307c89 100644
--- a/sql/field.h
+++ b/sql/field.h
@@ -638,6 +638,14 @@ public:
{
in_partitioning_expr= TRUE;
}
+ bool need_refix() const
+ {
+ return flags & VCOL_SESSION_FUNC;
+ }
+ bool fix_expr(THD *thd);
+ bool fix_session_expr(THD *thd);
+ bool cleanup_session_expr();
+ bool fix_and_check_expr(THD *thd, TABLE *table);
inline bool is_equal(const Virtual_column_info* vcol) const;
inline void print(String*);
};