Commit bf29d8de authored by unknown's avatar unknown

Merge


client/mysqltest.c:
  Bug #46Bug#4640 mysql-test-run terminates when the test case includes sjis characters with '5C'
parents 8c391e7c 09a6aa37
...@@ -156,7 +156,8 @@ static int *cur_block, *block_stack_end; ...@@ -156,7 +156,8 @@ static int *cur_block, *block_stack_end;
static int block_stack[BLOCK_STACK_DEPTH]; static int block_stack[BLOCK_STACK_DEPTH];
static int block_ok_stack[BLOCK_STACK_DEPTH]; static int block_ok_stack[BLOCK_STACK_DEPTH];
static CHARSET_INFO *charset_info= &my_charset_latin1; static CHARSET_INFO *charset_info= &my_charset_latin1; /* Default charset */
static char *charset_name = "latin1"; /* Default character set name */
static int embedded_server_arg_count=0; static int embedded_server_arg_count=0;
static char *embedded_server_args[MAX_SERVER_ARGS]; static char *embedded_server_args[MAX_SERVER_ARGS];
...@@ -269,6 +270,7 @@ Q_EXEC, Q_DELIMITER, ...@@ -269,6 +270,7 @@ Q_EXEC, Q_DELIMITER,
Q_DISPLAY_VERTICAL_RESULTS, Q_DISPLAY_HORIZONTAL_RESULTS, Q_DISPLAY_VERTICAL_RESULTS, Q_DISPLAY_HORIZONTAL_RESULTS,
Q_QUERY_VERTICAL, Q_QUERY_HORIZONTAL, Q_QUERY_VERTICAL, Q_QUERY_HORIZONTAL,
Q_START_TIMER, Q_END_TIMER, Q_START_TIMER, Q_END_TIMER,
Q_CHARACTER_SET,
Q_UNKNOWN, /* Unknown command. */ Q_UNKNOWN, /* Unknown command. */
Q_COMMENT, /* Comments, ignored. */ Q_COMMENT, /* Comments, ignored. */
...@@ -349,6 +351,7 @@ const char *command_names[]= ...@@ -349,6 +351,7 @@ const char *command_names[]=
"query_horizontal", "query_horizontal",
"start_timer", "start_timer",
"end_timer", "end_timer",
"character_set",
0 0
}; };
...@@ -370,6 +373,7 @@ int dyn_string_cmp(DYNAMIC_STRING* ds, const char *fname); ...@@ -370,6 +373,7 @@ int dyn_string_cmp(DYNAMIC_STRING* ds, const char *fname);
void reject_dump(const char *record_file, char *buf, int size); void reject_dump(const char *record_file, char *buf, int size);
int close_connection(struct st_query* q); int close_connection(struct st_query* q);
static void set_charset(struct st_query*);
VAR* var_get(const char *var_name, const char** var_name_end, my_bool raw, VAR* var_get(const char *var_name, const char** var_name_end, my_bool raw,
my_bool ignore_not_existing); my_bool ignore_not_existing);
int eval_expr(VAR* v, const char *p, const char** p_end); int eval_expr(VAR* v, const char *p, const char** p_end);
...@@ -1270,6 +1274,23 @@ static void get_file_name(char *filename, struct st_query* q) ...@@ -1270,6 +1274,23 @@ static void get_file_name(char *filename, struct st_query* q)
p[0]=0; p[0]=0;
} }
static void set_charset(struct st_query* q)
{
char* charset_name= q->first_argument;
char* tmp;
if (!charset_name || !*charset_name)
die("Missing charset name in 'character_set'\n");
/* Remove end space */
tmp= charset_name;
while (*tmp && !my_isspace(charset_info,*tmp))
tmp++;
*tmp= 0;
charset_info= get_charset_by_csname(charset_name,MY_CS_PRIMARY,MYF(MY_WME));
if (!charset_info)
abort_not_supported_test();
}
static uint get_errcodes(match_err *to,struct st_query* q) static uint get_errcodes(match_err *to,struct st_query* q)
{ {
...@@ -1630,7 +1651,7 @@ int do_connect(struct st_query* q) ...@@ -1630,7 +1651,7 @@ int do_connect(struct st_query* q)
if (opt_compress) if (opt_compress)
mysql_options(&next_con->mysql,MYSQL_OPT_COMPRESS,NullS); mysql_options(&next_con->mysql,MYSQL_OPT_COMPRESS,NullS);
mysql_options(&next_con->mysql, MYSQL_OPT_LOCAL_INFILE, 0); mysql_options(&next_con->mysql, MYSQL_OPT_LOCAL_INFILE, 0);
mysql_options(&next_con->mysql, MYSQL_SET_CHARSET_NAME, "latin1"); mysql_options(&next_con->mysql, MYSQL_SET_CHARSET_NAME, charset_name);
#ifdef HAVE_OPENSSL #ifdef HAVE_OPENSSL
if (opt_use_ssl) if (opt_use_ssl)
...@@ -1776,6 +1797,7 @@ int read_line(char* buf, int size) ...@@ -1776,6 +1797,7 @@ int read_line(char* buf, int size)
c= my_getc(*cur_file); c= my_getc(*cur_file);
if (feof(*cur_file)) if (feof(*cur_file))
{ {
found_eof:
if ((*cur_file) != stdin) if ((*cur_file) != stdin)
my_fclose(*cur_file, MYF(0)); my_fclose(*cur_file, MYF(0));
cur_file--; cur_file--;
...@@ -1885,8 +1907,40 @@ int read_line(char* buf, int size) ...@@ -1885,8 +1907,40 @@ int read_line(char* buf, int size)
} }
if (!no_save) if (!no_save)
{
/* Could be a multibyte character */
/* This code is based on the code in "sql_load.cc" */
#ifdef USE_MB
int charlen = my_mbcharlen(charset_info, c);
/* We give up if multibyte character is started but not */
/* completed before we pass buf_end */
if ((charlen > 1) && (p + charlen) <= buf_end)
{
int i;
char* mb_start = p;
*p++ = c;
for (i= 1; i < charlen; i++)
{
if (feof(*cur_file))
goto found_eof; /* FIXME: could we just break here?! */
c= my_getc(*cur_file);
*p++ = c;
}
if (! my_ismbchar(charset_info, mb_start, p))
{
/* It was not a multiline char, push back the characters */
/* We leave first 'c', i.e. pretend it was a normal char */
while (p > mb_start)
my_ungetc(*--p);
}
}
else
#endif
*p++= c; *p++= c;
} }
}
*p= 0; /* Always end with \0 */ *p= 0; /* Always end with \0 */
DBUG_RETURN(feof(*cur_file)); DBUG_RETURN(feof(*cur_file));
} }
...@@ -2748,7 +2802,7 @@ int main(int argc, char **argv) ...@@ -2748,7 +2802,7 @@ int main(int argc, char **argv)
if (opt_compress) if (opt_compress)
mysql_options(&cur_con->mysql,MYSQL_OPT_COMPRESS,NullS); mysql_options(&cur_con->mysql,MYSQL_OPT_COMPRESS,NullS);
mysql_options(&cur_con->mysql, MYSQL_OPT_LOCAL_INFILE, 0); mysql_options(&cur_con->mysql, MYSQL_OPT_LOCAL_INFILE, 0);
mysql_options(&cur_con->mysql, MYSQL_SET_CHARSET_NAME, "latin1"); mysql_options(&cur_con->mysql, MYSQL_SET_CHARSET_NAME, charset_name);
#ifdef HAVE_OPENSSL #ifdef HAVE_OPENSSL
if (opt_use_ssl) if (opt_use_ssl)
...@@ -2933,6 +2987,9 @@ int main(int argc, char **argv) ...@@ -2933,6 +2987,9 @@ int main(int argc, char **argv)
timer_output(); timer_output();
got_end_timer= TRUE; got_end_timer= TRUE;
break; break;
case Q_CHARACTER_SET:
set_charset(q);
break;
default: processed = 0; break; default: processed = 0; break;
} }
} }
......
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