1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

New command: SHOW CHARACTER SET [LIKE 'wild']

This commit is contained in:
bar@gw.udmsearch.izhnet.ru
2002-06-11 17:40:06 +05:00
parent 7677ee0545
commit e8571e68bb
5 changed files with 45 additions and 1 deletions

View File

@ -2101,6 +2101,9 @@ mysql_execute_command(void)
case SQLCOM_SHOW_OPEN_TABLES:
res= mysqld_show_open_tables(thd,(lex->wild ? lex->wild->ptr() : NullS));
break;
case SQLCOM_SHOW_CHARSETS:
res= mysqld_show_charsets(thd,(lex->wild ? lex->wild->ptr() : NullS));
break;
case SQLCOM_SHOW_FIELDS:
#ifdef DONT_ALLOW_SHOW_COMMANDS
send_error(&thd->net,ER_NOT_ALLOWED_COMMAND); /* purecov: inspected */