diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-07-23 16:26:24 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-08-27 16:59:12 +0200 |
commit | 3aff76f3750cf1ce2a58f093cb46190c2417f3bd (patch) | |
tree | cb6864d02c59b4b9b4d6bba553ad38a88232af5d /sql/field.h | |
parent | 159dc969ddd2ced669acbb669bae5fc8a4383b92 (diff) | |
download | mariadb-git-3aff76f3750cf1ce2a58f093cb46190c2417f3bd.tar.gz |
vcol flag rename VCOL_UNKNOWN -> VCOL_FIELD_REF
Diffstat (limited to 'sql/field.h')
-rw-r--r-- | sql/field.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/field.h b/sql/field.h index dc15cf9d10a..f3328d560b8 100644 --- a/sql/field.h +++ b/sql/field.h @@ -575,7 +575,7 @@ inline bool is_temporal_type_with_time(enum_field_types type) } /* Bits for type of vcol expression */ -#define VCOL_UNKNOWN 1 /* UDF used; Need fix_fields() to know */ +#define VCOL_FIELD_REF 1 #define VCOL_NON_DETERMINISTIC 2 #define VCOL_SESSION_FUNC 4 /* uses session data, e.g. USER or DAYNAME */ #define VCOL_TIME_FUNC 8 |