diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-06-29 21:18:32 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-06-30 11:43:02 +0200 |
commit | 70390771956847394122af43acdcdb1c7dac5910 (patch) | |
tree | c53646fff1629694aef3474078246c1c02714863 /sql/unireg.cc | |
parent | 0a056c9b5302c24ee4eaa9cc92bd6697125f94b7 (diff) | |
download | mariadb-git-70390771956847394122af43acdcdb1c7dac5910.tar.gz |
change vcol->non_deterministic to vcol->flags
Diffstat (limited to 'sql/unireg.cc')
-rw-r--r-- | sql/unireg.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/unireg.cc b/sql/unireg.cc index 33a54268da8..45c55fa1af9 100644 --- a/sql/unireg.cc +++ b/sql/unireg.cc @@ -576,7 +576,7 @@ static void pack_expression(uchar **buff, Virtual_column_info *vcol, int2store((*buff)+2, vcol->expr_str.length); (*buff)[4]= (uchar) type; (*buff)[5]= vcol->name.length; - (*buff)[6]= vcol->non_deterministic; // 1 bit used for now + (*buff)[6]= vcol->flags; (*buff)+= FRM_VCOL_NEW_HEADER_SIZE; memcpy((*buff), vcol->name.str, vcol->name.length); (*buff)+= vcol->name.length; |