Commit 952cb9b4 authored by bar@bar.mysql.r18.ru's avatar bar@bar.mysql.r18.ru

Renamed to look in common style

parent ea4621e5
...@@ -633,7 +633,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize); ...@@ -633,7 +633,7 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize);
%type <charset> %type <charset>
charset_name charset_name
charset_name_or_default charset_name_or_default
opt_db_default_character_set opt_default_charset
%type <variable> internal_variable_name %type <variable> internal_variable_name
...@@ -857,7 +857,7 @@ create: ...@@ -857,7 +857,7 @@ create:
lex->key_list.push_back(new Key($2,$4.str, $5, lex->col_list)); lex->key_list.push_back(new Key($2,$4.str, $5, lex->col_list));
lex->col_list.empty(); lex->col_list.empty();
} }
| CREATE DATABASE opt_if_not_exists ident opt_db_default_character_set | CREATE DATABASE opt_if_not_exists ident opt_default_charset
{ {
LEX *lex=Lex; LEX *lex=Lex;
lex->sql_command=SQLCOM_CREATE_DB; lex->sql_command=SQLCOM_CREATE_DB;
...@@ -1236,15 +1236,7 @@ attribute: ...@@ -1236,15 +1236,7 @@ attribute:
charset_name: charset_name:
BINARY ident
{
if (!($$=get_charset_by_name("binary",MYF(0))))
{
net_printf(YYTHD,ER_UNKNOWN_CHARACTER_SET,"binary");
YYABORT;
}
}
| ident
{ {
if (!($$=get_charset_by_name($1.str,MYF(0)))) if (!($$=get_charset_by_name($1.str,MYF(0))))
{ {
...@@ -1261,7 +1253,7 @@ opt_default: ...@@ -1261,7 +1253,7 @@ opt_default:
/* empty */ {} /* empty */ {}
| DEFAULT {}; | DEFAULT {};
opt_db_default_character_set: opt_default_charset:
/* empty */ { $$=default_charset_info; } /* empty */ { $$=default_charset_info; }
| opt_default CHAR_SYM SET charset_name_or_default { $$=$4; } | opt_default CHAR_SYM SET charset_name_or_default { $$=$4; }
| opt_default CHARSET charset_name_or_default { $$=$3; }; | opt_default CHARSET charset_name_or_default { $$=$3; };
...@@ -1408,7 +1400,7 @@ alter: ...@@ -1408,7 +1400,7 @@ alter:
} }
alter_list alter_list
{} {}
| ALTER DATABASE ident opt_db_default_character_set | ALTER DATABASE ident opt_default_charset
{ {
LEX *lex=Lex; LEX *lex=Lex;
lex->sql_command=SQLCOM_ALTER_DB; lex->sql_command=SQLCOM_ALTER_DB;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment