summaryrefslogtreecommitdiff
path: root/win
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2020-09-03 11:31:06 +0400
committerAlexander Barkov <bar@mariadb.com>2020-09-03 11:31:06 +0400
commit1e17055936871e00fde3c5b3e4b137cf2f89beba (patch)
tree4e11460941c358fed505f696ab36653b0f8a5d43 /win
parent94a520ddbe39ae97de1135d98699cf2674e6b77e (diff)
downloadmariadb-git-1e17055936871e00fde3c5b3e4b137cf2f89beba.tar.gz
MDEV-23535 SIGSEGV, SIGABRT and SIGILL in typeinfo for Item_func_set_collation (on optimized builds)bb-10.1-bar
This piece of the code in Item_func_or_sum::agg_item_set_converter: if (!conv && ((*arg)->collation.repertoire == MY_REPERTOIRE_ASCII)) conv= new (thd->mem_root) Item_func_conv_charset(thd, *arg, coll.collation, 1); was wrong because: 1. It could change Item_cache to Item_func_conv_charset (with Item_cache in args[0]). Such Item type change is not supported: The code in Item_singlerow_subselect::reset() expects only Item_cache, to be able to call Item_cache::set_null(). So it erroneously reinterpreted Item_func_conv_charset to Item_cache and calleds a non-existing method set_null(). 2. The 1 in the last parameter to Item_func_conv_charset() was also a problem. In MariaDB versions where the reported query did not crash, it erroneously returned "empty set" instead of one row, because the 1 made subselects execute too earlier and return NULL. Fix: 1. Removing the above two lines from Item_func_or_sum::agg_item_set_converter() 2. Adding the repertoire test inside the constructor of Item_func_conv_charset, so it now detects itself as "safe" in more cases than before. This is needed to avoid new "Illegal mix of collations" after removing the wrong code in various scenarios when conversion from pure ASCII happens, including in the reported scenario. So now this sequence: Item_cache(Item_func_concat) is converted to this compatible sequence (the top Item is still Item_cache): NEW_Item_cache(Item_func_conv_charset(Item_func_concat))) Before the fix it was replaced to this incompatible sequence: Item_func_conv_charset(OLD_Item_cache(Item_func_concat)))
Diffstat (limited to 'win')
0 files changed, 0 insertions, 0 deletions