diff options
author | Alexander Barkov <bar@mariadb.org> | 2015-09-06 13:25:47 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2015-09-06 13:25:47 +0400 |
commit | e0df116056237beb89faa3527938b7ec7b1e15ec (patch) | |
tree | 089b17d3b2f331f65608922783166d4a58682bb3 /include/mysql.h.pp | |
parent | c108019a48451147b456aed0d988773eee32a55b (diff) | |
download | mariadb-git-e0df116056237beb89faa3527938b7ec7b1e15ec.tar.gz |
A clean-up after the patch for MDEV-8747 and MDEV-8749:
removing IMPOSSIBLE_RESULT from Item_result, as it's not
needed any more. The fact that an Item is not in a comparison
context is now always designated by IDENTITY_SUBST in Subst_constraint.
Previously IMPOSSIBLE_RESULT and IDENTITY_SUBST co-existed but
actually meant the same thing.
Diffstat (limited to 'include/mysql.h.pp')
-rw-r--r-- | include/mysql.h.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h.pp b/include/mysql.h.pp index ea4a3ee9c02..5c3a9210ce8 100644 --- a/include/mysql.h.pp +++ b/include/mysql.h.pp @@ -100,7 +100,7 @@ struct my_rnd_struct; enum Item_result { STRING_RESULT=0, REAL_RESULT, INT_RESULT, ROW_RESULT, DECIMAL_RESULT, - TIME_RESULT,IMPOSSIBLE_RESULT + TIME_RESULT }; typedef struct st_udf_args { |