diff options
author | unknown <bar@mysql.com> | 2004-07-02 16:52:02 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-07-02 16:52:02 +0500 |
commit | c345fc0f8270b241b6b4b893c10b1496bd086ce6 (patch) | |
tree | 3aa8883a52a23b8490e49189e28757ce519aa49e /sql/sql_yacc.yy | |
parent | 6b577437b96f4bb57c80d89fbb8171390c2a2e95 (diff) | |
download | mariadb-git-c345fc0f8270b241b6b4b893c10b1496bd086ce6.tar.gz |
Bug #4374 SHOW TABLE STATUS FROM ignores collation_connection
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 6fa69f050b4..d284bff8c7c 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -4422,7 +4422,9 @@ opt_db: wild: /* empty */ - | LIKE text_string { Lex->wild= $2; }; + | LIKE TEXT_STRING_sys + { Lex->wild= new (&YYTHD->mem_root) String($2.str, $2.length, + system_charset_info); }; opt_full: /* empty */ { Lex->verbose=0; } |