From 79660e59ee8fcd23f928c72dc77682b875bd58ce Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 8 May 2022 13:00:35 +0200 Subject: can't use Item_default_value as a field if it's an expression OR a blob Fixed failing main.default on Windows (to trigger an assert the test needed a debug build without safemalloc, as 0xa5 happened to have the important bit set "correctly") --- sql/sql_select.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 23e69b32e39..6d8d389b81d 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -17343,7 +17343,7 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type, case Item::DEFAULT_VALUE_ITEM: { Field *field= ((Item_default_value*) item)->field; - if (field->default_value && (field->flags & BLOB_FLAG)) + if (field->default_value || (field->flags & BLOB_FLAG)) { /* We have to use a copy function when using a blob with default value -- cgit v1.2.1