[Commits] f395895: Applied code from the fix for the bug MDEV-15738 to get rid
revision-id: f3958957075f1d0b9740774777341e8b2cdfd7f4 (mariadb-10.3.5-113-gf395895) parent(s): b19cf47ce0b1659a0ad91fe1ed5c22df0bc47969 author: Igor Babaev committer: Igor Babaev timestamp: 2018-04-07 18:47:49 -0700 message: Applied code from the fix for the bug MDEV-15738 to get rid of a failure in main.information_schema in --ps-protocol. --- sql/item.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/item.cc b/sql/item.cc index d74e5aa..8b11fb2 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -3082,8 +3082,8 @@ Item_field::Item_field(THD *thd, Field *f) field_name and table_name should not point to garbage if this item is to be reused */ - orig_table_name= ""; - orig_field_name= null_clex_str; + orig_table_name= table_name; + orig_field_name= field_name; with_field= 1; }
participants (1)
-
IgorBabaev