mirror of
https://github.com/MariaDB/server.git
synced 2025-07-04 01:23:45 +03:00
Merge pilot.mysql.com:/data/msvensson/mysql/bug31167/my50-bug31167
into pilot.mysql.com:/data/msvensson/mysql/mysql-5.0-maint
This commit is contained in:
@ -1345,3 +1345,8 @@ zlib/*.vcproj
|
|||||||
debian/control
|
debian/control
|
||||||
debian/defs.mk
|
debian/defs.mk
|
||||||
include/abi_check
|
include/abi_check
|
||||||
|
support-files/mysqld_multi.server
|
||||||
|
tests/bug25714
|
||||||
|
cscope.in.out
|
||||||
|
cscope.out
|
||||||
|
cscope.po.out
|
||||||
|
@ -138,3 +138,28 @@ then
|
|||||||
echo "$CC" | grep "ccache" > /dev/null || CC="ccache $CC"
|
echo "$CC" | grep "ccache" > /dev/null || CC="ccache $CC"
|
||||||
echo "$CXX" | grep "ccache" > /dev/null || CXX="ccache $CXX"
|
echo "$CXX" | grep "ccache" > /dev/null || CXX="ccache $CXX"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# gcov
|
||||||
|
|
||||||
|
# The -fprofile-arcs and -ftest-coverage options cause GCC to instrument the
|
||||||
|
# code with profiling information used by gcov.
|
||||||
|
# The -DDISABLE_TAO_ASM is needed to avoid build failures in Yassl.
|
||||||
|
# The -DHAVE_gcov enables code to write out coverage info even when crashing.
|
||||||
|
|
||||||
|
gcov_compile_flags="-fprofile-arcs -ftest-coverage"
|
||||||
|
gcov_compile_flags="$gcov_compile_flags -DDISABLE_TAO_ASM"
|
||||||
|
gcov_compile_flags="$gcov_compile_flags -DMYSQL_SERVER_SUFFIX=-gcov -DHAVE_gcov"
|
||||||
|
|
||||||
|
# GCC4 needs -fprofile-arcs -ftest-coverage on the linker command line (as well
|
||||||
|
# as on the compiler command line), and this requires setting LDFLAGS for BDB.
|
||||||
|
|
||||||
|
gcov_link_flags="-fprofile-arcs -ftest-coverage"
|
||||||
|
|
||||||
|
gcov_configs="--disable-shared"
|
||||||
|
|
||||||
|
# gprof
|
||||||
|
|
||||||
|
gprof_compile_flags="-O2 -pg -g"
|
||||||
|
|
||||||
|
gprof_link_flags="--disable-shared $static_link"
|
||||||
|
|
||||||
|
17
BUILD/compile-amd64-gcov
Executable file
17
BUILD/compile-amd64-gcov
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
path=`dirname $0`
|
||||||
|
. "$path/SETUP.sh"
|
||||||
|
|
||||||
|
# Need to disable ccache, or we loose the gcov-needed compiler output files.
|
||||||
|
CCACHE_DISABLE=1
|
||||||
|
export CCACHE_DISABLE
|
||||||
|
|
||||||
|
export LDFLAGS="$gcov_link_flags"
|
||||||
|
|
||||||
|
extra_flags="$amd64_cflags $debug_cflags $max_cflags $gcov_compile_flags"
|
||||||
|
c_warnings="$c_warnings $debug_extra_warnings"
|
||||||
|
cxx_warnings="$cxx_warnings $debug_extra_warnings"
|
||||||
|
extra_configs="$amd64_configs $debug_configs $gcov_configs $max_configs"
|
||||||
|
|
||||||
|
. "$path/FINISH.sh"
|
9
BUILD/compile-amd64-gprof
Executable file
9
BUILD/compile-amd64-gprof
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
path=`dirname $0`
|
||||||
|
. "$path/SETUP.sh"
|
||||||
|
|
||||||
|
extra_flags="$amd64_cflags $gprof_compile_flags"
|
||||||
|
extra_configs="$amd64_configs $debug_configs $gprof_link_flags"
|
||||||
|
|
||||||
|
. "$path/FINISH.sh"
|
@ -7,18 +7,11 @@ path=`dirname $0`
|
|||||||
CCACHE_DISABLE=1
|
CCACHE_DISABLE=1
|
||||||
export CCACHE_DISABLE
|
export CCACHE_DISABLE
|
||||||
|
|
||||||
# GCC4 needs -fprofile-arcs -ftest-coverage on the linker command line (as well
|
export LDFLAGS="$gcov_link_flags"
|
||||||
# as on the compiler command line), and this requires setting LDFLAGS for BDB.
|
|
||||||
export LDFLAGS="-fprofile-arcs -ftest-coverage"
|
|
||||||
|
|
||||||
# The -fprofile-arcs and -ftest-coverage options cause GCC to instrument the
|
extra_flags="$pentium_cflags $debug_cflags $max_cflags $gcov_compile_flags"
|
||||||
# code with profiling information used by gcov.
|
|
||||||
# The -DDISABLE_TAO_ASM is needed to avoid build failures in Yassl.
|
|
||||||
# The -DHAVE_gcov enables code to write out coverage info even when crashing.
|
|
||||||
extra_flags="$pentium_cflags -fprofile-arcs -ftest-coverage -DDISABLE_TAO_ASM $debug_cflags $max_cflags -DMYSQL_SERVER_SUFFIX=-gcov -DHAVE_gcov"
|
|
||||||
c_warnings="$c_warnings $debug_extra_warnings"
|
c_warnings="$c_warnings $debug_extra_warnings"
|
||||||
cxx_warnings="$cxx_warnings $debug_extra_warnings"
|
cxx_warnings="$cxx_warnings $debug_extra_warnings"
|
||||||
extra_configs="$pentium_configs $debug_configs --disable-shared $static_link"
|
extra_configs="$pentium_configs $debug_configs $gcov_configs $max_configs"
|
||||||
extra_configs="$extra_configs $max_configs"
|
|
||||||
|
|
||||||
. "$path/FINISH.sh"
|
. "$path/FINISH.sh"
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
path=`dirname $0`
|
path=`dirname $0`
|
||||||
. "$path/SETUP.sh"
|
. "$path/SETUP.sh"
|
||||||
|
|
||||||
extra_flags="$pentium_cflags -O2 -pg -g"
|
extra_flags="$pentium_cflags $gprof_compile_flags"
|
||||||
extra_configs="$pentium_configs $debug_configs --disable-shared $static_link"
|
extra_configs="$pentium_configs $debug_configs $gprof_link_flags"
|
||||||
|
|
||||||
. "$path/FINISH.sh"
|
. "$path/FINISH.sh"
|
||||||
|
17
BUILD/compile-pentium64-gcov
Executable file
17
BUILD/compile-pentium64-gcov
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
path=`dirname $0`
|
||||||
|
. "$path/SETUP.sh"
|
||||||
|
|
||||||
|
# Need to disable ccache, or we loose the gcov-needed compiler output files.
|
||||||
|
CCACHE_DISABLE=1
|
||||||
|
export CCACHE_DISABLE
|
||||||
|
|
||||||
|
export LDFLAGS="$gcov_link_flags"
|
||||||
|
|
||||||
|
extra_flags="$pentium64_cflags $debug_cflags $max_cflags $gcov_compile_flags"
|
||||||
|
c_warnings="$c_warnings $debug_extra_warnings"
|
||||||
|
cxx_warnings="$cxx_warnings $debug_extra_warnings"
|
||||||
|
extra_configs="$pentium64_configs $debug_configs $gcov_configs $max_configs"
|
||||||
|
|
||||||
|
. "$path/FINISH.sh"
|
9
BUILD/compile-pentium64-gprof
Executable file
9
BUILD/compile-pentium64-gprof
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
path=`dirname $0`
|
||||||
|
. "$path/SETUP.sh"
|
||||||
|
|
||||||
|
extra_flags="$pentium64_cflags $gprof_compile_flags"
|
||||||
|
extra_configs="$pentium64_configs $debug_configs $gprof_link_flags"
|
||||||
|
|
||||||
|
. "$path/FINISH.sh"
|
@ -673,9 +673,14 @@ static struct my_option my_long_options[] =
|
|||||||
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
||||||
NO_ARG, 0, 0, 0, 0, 0, 0},
|
NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
#endif
|
#endif
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
0},
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &opt_mysql_port,
|
||||||
|
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"prompt", OPT_PROMPT, "Set the mysql prompt to this value.",
|
{"prompt", OPT_PROMPT, "Set the mysql prompt to this value.",
|
||||||
(gptr*) ¤t_prompt, (gptr*) ¤t_prompt, 0, GET_STR_ALLOC,
|
(gptr*) ¤t_prompt, (gptr*) ¤t_prompt, 0, GET_STR_ALLOC,
|
||||||
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
@ -1245,6 +1250,7 @@ static bool add_line(String &buffer,char *line,char *in_string,
|
|||||||
char buff[80], *pos, *out;
|
char buff[80], *pos, *out;
|
||||||
COMMANDS *com;
|
COMMANDS *com;
|
||||||
bool need_space= 0;
|
bool need_space= 0;
|
||||||
|
bool ss_comment= 0;
|
||||||
DBUG_ENTER("add_line");
|
DBUG_ENTER("add_line");
|
||||||
|
|
||||||
if (!line[0] && buffer.is_empty())
|
if (!line[0] && buffer.is_empty())
|
||||||
@ -1298,6 +1304,19 @@ static bool add_line(String &buffer,char *line,char *in_string,
|
|||||||
if ((*com->func)(&buffer,pos-1) > 0)
|
if ((*com->func)(&buffer,pos-1) > 0)
|
||||||
DBUG_RETURN(1); // Quit
|
DBUG_RETURN(1); // Quit
|
||||||
if (com->takes_params)
|
if (com->takes_params)
|
||||||
|
{
|
||||||
|
if (ss_comment)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
If a client-side macro appears inside a server-side comment,
|
||||||
|
discard all characters in the comment after the macro (that is,
|
||||||
|
until the end of the comment rather than the next delimiter)
|
||||||
|
*/
|
||||||
|
for (pos++; *pos && (*pos != '*' || *(pos + 1) != '/'); pos++)
|
||||||
|
;
|
||||||
|
pos--;
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
for (pos++ ;
|
for (pos++ ;
|
||||||
*pos && (*pos != *delimiter ||
|
*pos && (*pos != *delimiter ||
|
||||||
@ -1308,6 +1327,7 @@ static bool add_line(String &buffer,char *line,char *in_string,
|
|||||||
else
|
else
|
||||||
pos+= delimiter_length - 1; // Point at last delim char
|
pos+= delimiter_length - 1; // Point at last delim char
|
||||||
}
|
}
|
||||||
|
}
|
||||||
out=line;
|
out=line;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -1368,7 +1388,7 @@ static bool add_line(String &buffer,char *line,char *in_string,
|
|||||||
out=line;
|
out=line;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (*ml_comment && inchar == '*' && *(pos + 1) == '/')
|
else if (*ml_comment && !ss_comment && inchar == '*' && *(pos + 1) == '/')
|
||||||
{
|
{
|
||||||
pos++;
|
pos++;
|
||||||
*ml_comment= 0;
|
*ml_comment= 0;
|
||||||
@ -1376,6 +1396,11 @@ static bool add_line(String &buffer,char *line,char *in_string,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{ // Add found char to buffer
|
{ // Add found char to buffer
|
||||||
|
if (!*in_string && inchar == '/' && *(pos + 1) == '*' &&
|
||||||
|
*(pos + 2) == '!')
|
||||||
|
ss_comment= 1;
|
||||||
|
else if (!*in_string && ss_comment && inchar == '*' && *(pos + 1) == '/')
|
||||||
|
ss_comment= 0;
|
||||||
if (inchar == *in_string)
|
if (inchar == *in_string)
|
||||||
*in_string= 0;
|
*in_string= 0;
|
||||||
else if (!*ml_comment && !*in_string &&
|
else if (!*ml_comment && !*in_string &&
|
||||||
|
@ -88,8 +88,13 @@ static struct my_option my_long_options[]=
|
|||||||
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0,
|
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0,
|
||||||
GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
|
GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
#endif
|
#endif
|
||||||
{"port", 'P', "Port number to use for connection.", 0,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"protocol", OPT_MYSQL_PROTOCOL,
|
{"protocol", OPT_MYSQL_PROTOCOL,
|
||||||
"The protocol of connection (tcp,socket,pipe,memory).",
|
"The protocol of connection (tcp,socket,pipe,memory).",
|
||||||
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
|
@ -159,7 +159,13 @@ static struct my_option my_long_options[] =
|
|||||||
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
||||||
NO_ARG, 0, 0, 0, 0, 0, 0},
|
NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
#endif
|
#endif
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &tcp_port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &tcp_port,
|
||||||
(gptr*) &tcp_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
(gptr*) &tcp_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
||||||
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
0, 0, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
|
@ -687,9 +687,14 @@ static struct my_option my_long_options[] =
|
|||||||
0, GET_ULL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
0, GET_ULL, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"password", 'p', "Password to connect to remote server.",
|
{"password", 'p', "Password to connect to remote server.",
|
||||||
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"port", 'P', "Use port to connect to the remote server.",
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
(gptr*) &port, (gptr*) &port, 0, GET_INT, REQUIRED_ARG, 0, 0, 0,
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
0, 0, 0},
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &port, (gptr*) &port, 0, GET_INT, REQUIRED_ARG,
|
||||||
|
0, 0, 0, 0, 0, 0},
|
||||||
{"position", 'j', "Deprecated. Use --start-position instead.",
|
{"position", 'j', "Deprecated. Use --start-position instead.",
|
||||||
(gptr*) &start_position, (gptr*) &start_position, 0, GET_ULL,
|
(gptr*) &start_position, (gptr*) &start_position, 0, GET_ULL,
|
||||||
REQUIRED_ARG, BIN_LOG_HEADER_SIZE, BIN_LOG_HEADER_SIZE,
|
REQUIRED_ARG, BIN_LOG_HEADER_SIZE, BIN_LOG_HEADER_SIZE,
|
||||||
|
@ -123,7 +123,13 @@ static struct my_option my_long_options[] =
|
|||||||
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
||||||
NO_ARG, 0, 0, 0, 0, 0, 0},
|
NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
#endif
|
#endif
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &opt_mysql_port,
|
||||||
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
||||||
0},
|
0},
|
||||||
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
||||||
|
@ -361,7 +361,13 @@ static struct my_option my_long_options[] =
|
|||||||
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
||||||
NO_ARG, 0, 0, 0, 0, 0, 0},
|
NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
#endif
|
#endif
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &opt_mysql_port,
|
||||||
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
||||||
0},
|
0},
|
||||||
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
||||||
@ -2898,7 +2904,7 @@ int init_dumping_tables(char *qdatabase)
|
|||||||
/* Old server version, dump generic CREATE DATABASE */
|
/* Old server version, dump generic CREATE DATABASE */
|
||||||
if (opt_drop_database)
|
if (opt_drop_database)
|
||||||
fprintf(md_result_file,
|
fprintf(md_result_file,
|
||||||
"\n/*!40000 DROP DATABASE IF EXISTS %s;*/\n",
|
"\n/*!40000 DROP DATABASE IF EXISTS %s*/;\n",
|
||||||
qdatabase);
|
qdatabase);
|
||||||
fprintf(md_result_file,
|
fprintf(md_result_file,
|
||||||
"\nCREATE DATABASE /*!32312 IF NOT EXISTS*/ %s;\n",
|
"\nCREATE DATABASE /*!32312 IF NOT EXISTS*/ %s;\n",
|
||||||
|
@ -119,7 +119,13 @@ static struct my_option my_long_options[] =
|
|||||||
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
{"pipe", 'W', "Use named pipes to connect to server.", 0, 0, 0, GET_NO_ARG,
|
||||||
NO_ARG, 0, 0, 0, 0, 0, 0},
|
NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
#endif
|
#endif
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &opt_mysql_port,
|
||||||
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
||||||
0},
|
0},
|
||||||
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
{"protocol", OPT_MYSQL_PROTOCOL, "The protocol of connection (tcp,socket,pipe,memory).",
|
||||||
|
@ -49,7 +49,12 @@ static struct my_option my_long_options[] =
|
|||||||
GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"password", 'p', "Password to use when connecting to server.",
|
{"password", 'p', "Password to use when connecting to server.",
|
||||||
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").", (gptr*) &port,
|
||||||
(gptr*) &port, 0, GET_UINT, REQUIRED_ARG, MYSQL_MANAGER_PORT, 0, 0, 0, 0,
|
(gptr*) &port, 0, GET_UINT, REQUIRED_ARG, MYSQL_MANAGER_PORT, 0, 0, 0, 0,
|
||||||
0},
|
0},
|
||||||
{"help", '?', "Display this help and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG,
|
{"help", '?', "Display this help and exit.", 0, 0, 0, GET_NO_ARG, NO_ARG,
|
||||||
|
@ -188,7 +188,13 @@ static struct my_option my_long_options[] =
|
|||||||
{"password", 'p',
|
{"password", 'p',
|
||||||
"Password to use when connecting to server. If password is not given it's asked from the tty.",
|
"Password to use when connecting to server. If password is not given it's asked from the tty.",
|
||||||
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &opt_mysql_port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &opt_mysql_port,
|
||||||
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
(gptr*) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
|
||||||
0},
|
0},
|
||||||
#ifdef __WIN__
|
#ifdef __WIN__
|
||||||
|
@ -4947,7 +4947,13 @@ static struct my_option my_long_options[] =
|
|||||||
GET_INT, REQUIRED_ARG, 500, 1, 10000, 0, 0, 0},
|
GET_INT, REQUIRED_ARG, 500, 1, 10000, 0, 0, 0},
|
||||||
{"password", 'p', "Password to use when connecting to server.",
|
{"password", 'p', "Password to use when connecting to server.",
|
||||||
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"port", 'P', "Port number to use for connection.", (gptr*) &opt_port,
|
{"port", 'P', "Port number to use for connection or 0 for default to, in "
|
||||||
|
"order of preference, my.cnf, $MYSQL_TCP_PORT, "
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
|
"/etc/services, "
|
||||||
|
#endif
|
||||||
|
"built-in default (" STRINGIFY_ARG(MYSQL_PORT) ").",
|
||||||
|
(gptr*) &opt_port,
|
||||||
(gptr*) &opt_port, 0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
(gptr*) &opt_port, 0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
|
||||||
{"ps-protocol", OPT_PS_PROTOCOL, "Use prepared statements protocol for communication",
|
{"ps-protocol", OPT_PS_PROTOCOL, "Use prepared statements protocol for communication",
|
||||||
(gptr*) &ps_protocol, (gptr*) &ps_protocol, 0,
|
(gptr*) &ps_protocol, (gptr*) &ps_protocol, 0,
|
||||||
|
@ -773,11 +773,8 @@ case $CXX_VERSION in
|
|||||||
ARFLAGS="-xar -o"
|
ARFLAGS="-xar -o"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if test -z "$AR"
|
|
||||||
then
|
|
||||||
AC_CHECK_PROG([AR], [ar], [ar])
|
AC_CHECK_PROG([AR], [ar], [ar])
|
||||||
fi
|
if test -z "$AR" || test "$AR" = "false"
|
||||||
if test -z "$AR"
|
|
||||||
then
|
then
|
||||||
AC_MSG_ERROR([You need ar to build the library])
|
AC_MSG_ERROR([You need ar to build the library])
|
||||||
fi
|
fi
|
||||||
|
33
configure.in
33
configure.in
@ -7,7 +7,7 @@ AC_INIT(sql/mysqld.cc)
|
|||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
# The Docs Makefile.am parses this line!
|
# The Docs Makefile.am parses this line!
|
||||||
# remember to also change ndb version below and update version.c in ndb
|
# remember to also change ndb version below and update version.c in ndb
|
||||||
AM_INIT_AUTOMAKE(mysql, 5.0.50)
|
AM_INIT_AUTOMAKE(mysql, 5.0.52)
|
||||||
AM_CONFIG_HEADER([include/config.h:config.h.in])
|
AM_CONFIG_HEADER([include/config.h:config.h.in])
|
||||||
|
|
||||||
PROTOCOL_VERSION=10
|
PROTOCOL_VERSION=10
|
||||||
@ -23,7 +23,7 @@ NDB_SHARED_LIB_VERSION=$NDB_SHARED_LIB_MAJOR_VERSION:0:0
|
|||||||
# ndb version
|
# ndb version
|
||||||
NDB_VERSION_MAJOR=5
|
NDB_VERSION_MAJOR=5
|
||||||
NDB_VERSION_MINOR=0
|
NDB_VERSION_MINOR=0
|
||||||
NDB_VERSION_BUILD=50
|
NDB_VERSION_BUILD=52
|
||||||
NDB_VERSION_STATUS=""
|
NDB_VERSION_STATUS=""
|
||||||
|
|
||||||
# Set all version vars based on $VERSION. How do we do this more elegant ?
|
# Set all version vars based on $VERSION. How do we do this more elegant ?
|
||||||
@ -718,7 +718,34 @@ AC_ARG_WITH(tcp-port,
|
|||||||
[ --with-tcp-port=port-number
|
[ --with-tcp-port=port-number
|
||||||
Which port to use for MySQL services (default 3306)],
|
Which port to use for MySQL services (default 3306)],
|
||||||
[ MYSQL_TCP_PORT=$withval ],
|
[ MYSQL_TCP_PORT=$withval ],
|
||||||
[ MYSQL_TCP_PORT=$MYSQL_TCP_PORT_DEFAULT ]
|
[ MYSQL_TCP_PORT=$MYSQL_TCP_PORT_DEFAULT
|
||||||
|
# if we actually defaulted (as opposed to the pathological case of
|
||||||
|
# --with-tcp-port=<MYSQL_TCP_PORT_DEFAULT> which might in theory
|
||||||
|
# happen if whole batch of servers was built from a script), set
|
||||||
|
# the default to zero to indicate that; we don't lose information
|
||||||
|
# that way, because 0 obviously indicates that we can get the
|
||||||
|
# default value from MYSQL_TCP_PORT. this seems really evil, but
|
||||||
|
# testing for MYSQL_TCP_PORT==MYSQL_TCP_PORT_DEFAULT would make a
|
||||||
|
# a port of MYSQL_TCP_PORT_DEFAULT magic even if the builder did not
|
||||||
|
# intend it to mean "use the default, in fact, look up a good default
|
||||||
|
# from /etc/services if you can", but really, really meant 3306 when
|
||||||
|
# they passed in 3306. When they pass in a specific value, let them
|
||||||
|
# have it; don't second guess user and think we know better, this will
|
||||||
|
# just make people cross. this makes the the logic work like this
|
||||||
|
# (which is complicated enough):
|
||||||
|
#
|
||||||
|
# - if a port was set during build, use that as a default.
|
||||||
|
#
|
||||||
|
# - otherwise, try to look up a port in /etc/services; if that fails,
|
||||||
|
# use MYSQL_TCP_PORT_DEFAULT (at the time of this writing 3306)
|
||||||
|
#
|
||||||
|
# - allow the MYSQL_TCP_PORT environment variable to override that.
|
||||||
|
#
|
||||||
|
# - allow command-line parameters to override all of the above.
|
||||||
|
#
|
||||||
|
# the top-most MYSQL_TCP_PORT_DEFAULT is read from win/configure.js,
|
||||||
|
# so don't mess with that.
|
||||||
|
MYSQL_TCP_PORT_DEFAULT=0 ]
|
||||||
)
|
)
|
||||||
AC_SUBST(MYSQL_TCP_PORT)
|
AC_SUBST(MYSQL_TCP_PORT)
|
||||||
# We might want to document the assigned port in the manual.
|
# We might want to document the assigned port in the manual.
|
||||||
|
@ -46,7 +46,7 @@ typedef struct st_key_cache
|
|||||||
my_bool key_cache_inited;
|
my_bool key_cache_inited;
|
||||||
my_bool resize_in_flush; /* true during flush of resize operation */
|
my_bool resize_in_flush; /* true during flush of resize operation */
|
||||||
my_bool can_be_used; /* usage of cache for read/write is allowed */
|
my_bool can_be_used; /* usage of cache for read/write is allowed */
|
||||||
ulong key_cache_mem_size; /* specified size of the cache memory */
|
size_t key_cache_mem_size; /* specified size of the cache memory */
|
||||||
uint key_cache_block_size; /* size of the page buffer of a cache block */
|
uint key_cache_block_size; /* size of the page buffer of a cache block */
|
||||||
ulong min_warm_blocks; /* min number of warm blocks; */
|
ulong min_warm_blocks; /* min number of warm blocks; */
|
||||||
ulong age_threshold; /* age threshold for hot blocks */
|
ulong age_threshold; /* age threshold for hot blocks */
|
||||||
@ -101,10 +101,10 @@ typedef struct st_key_cache
|
|||||||
extern KEY_CACHE dflt_key_cache_var, *dflt_key_cache;
|
extern KEY_CACHE dflt_key_cache_var, *dflt_key_cache;
|
||||||
|
|
||||||
extern int init_key_cache(KEY_CACHE *keycache, uint key_cache_block_size,
|
extern int init_key_cache(KEY_CACHE *keycache, uint key_cache_block_size,
|
||||||
ulong use_mem, uint division_limit,
|
size_t use_mem, uint division_limit,
|
||||||
uint age_threshold);
|
uint age_threshold);
|
||||||
extern int resize_key_cache(KEY_CACHE *keycache, uint key_cache_block_size,
|
extern int resize_key_cache(KEY_CACHE *keycache, uint key_cache_block_size,
|
||||||
ulong use_mem, uint division_limit,
|
size_t use_mem, uint division_limit,
|
||||||
uint age_threshold);
|
uint age_threshold);
|
||||||
extern void change_key_cache_param(KEY_CACHE *keycache, uint division_limit,
|
extern void change_key_cache_param(KEY_CACHE *keycache, uint division_limit,
|
||||||
uint age_threshold);
|
uint age_threshold);
|
||||||
|
@ -780,9 +780,6 @@ typedef SOCKET_SIZE_TYPE size_socket;
|
|||||||
#define DBL_MAX 1.79769313486231470e+308
|
#define DBL_MAX 1.79769313486231470e+308
|
||||||
#define FLT_MAX ((float)3.40282346638528860e+38)
|
#define FLT_MAX ((float)3.40282346638528860e+38)
|
||||||
#endif
|
#endif
|
||||||
#ifndef SSIZE_MAX
|
|
||||||
#define SSIZE_MAX ((~((size_t) 0)) / 2)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef HAVE_FINITE
|
#ifndef HAVE_FINITE
|
||||||
#define finite(x) (1.0 / fabs(x) > 0.0)
|
#define finite(x) (1.0 / fabs(x) > 0.0)
|
||||||
|
@ -147,13 +147,13 @@ extern ulonglong sf_malloc_mem_limit;
|
|||||||
#define TERMINATE(A) {}
|
#define TERMINATE(A) {}
|
||||||
#define QUICK_SAFEMALLOC
|
#define QUICK_SAFEMALLOC
|
||||||
#define NORMAL_SAFEMALLOC
|
#define NORMAL_SAFEMALLOC
|
||||||
extern gptr my_malloc(uint Size,myf MyFlags);
|
extern gptr my_malloc(size_t Size, myf MyFlags);
|
||||||
#define my_malloc_ci(SZ,FLAG) my_malloc( SZ, FLAG )
|
#define my_malloc_ci(SZ,FLAG) my_malloc( SZ, FLAG )
|
||||||
extern gptr my_realloc(gptr oldpoint,uint Size,myf MyFlags);
|
extern gptr my_realloc(gptr oldpoint,uint Size,myf MyFlags);
|
||||||
extern void my_no_flags_free(gptr ptr);
|
extern void my_no_flags_free(gptr ptr);
|
||||||
extern gptr my_memdup(const byte *from,uint length,myf MyFlags);
|
extern gptr my_memdup(const byte *from, size_t length, myf MyFlags);
|
||||||
extern char *my_strdup(const char *from,myf MyFlags);
|
extern char *my_strdup(const char *from,myf MyFlags);
|
||||||
extern char *my_strdup_with_length(const char *from, uint length,
|
extern char *my_strdup_with_length(const char *from, size_t length,
|
||||||
myf MyFlags);
|
myf MyFlags);
|
||||||
/* we do use FG (as a no-op) in below so that a typo on FG is caught */
|
/* we do use FG (as a no-op) in below so that a typo on FG is caught */
|
||||||
#define my_free(PTR,FG) ((void)FG,my_no_flags_free(PTR))
|
#define my_free(PTR,FG) ((void)FG,my_no_flags_free(PTR))
|
||||||
@ -165,7 +165,7 @@ extern char *my_strdup_with_length(const char *from, uint length,
|
|||||||
|
|
||||||
#ifdef HAVE_LARGE_PAGES
|
#ifdef HAVE_LARGE_PAGES
|
||||||
extern uint my_get_large_page_size(void);
|
extern uint my_get_large_page_size(void);
|
||||||
extern gptr my_large_malloc(uint size, myf my_flags);
|
extern gptr my_large_malloc(size_t size, myf my_flags);
|
||||||
extern void my_large_free(gptr ptr, myf my_flags);
|
extern void my_large_free(gptr ptr, myf my_flags);
|
||||||
#else
|
#else
|
||||||
#define my_get_large_page_size() (0)
|
#define my_get_large_page_size() (0)
|
||||||
@ -590,18 +590,18 @@ extern uint my_fwrite(FILE *stream,const byte *Buffer,uint Count,
|
|||||||
myf MyFlags);
|
myf MyFlags);
|
||||||
extern my_off_t my_fseek(FILE *stream,my_off_t pos,int whence,myf MyFlags);
|
extern my_off_t my_fseek(FILE *stream,my_off_t pos,int whence,myf MyFlags);
|
||||||
extern my_off_t my_ftell(FILE *stream,myf MyFlags);
|
extern my_off_t my_ftell(FILE *stream,myf MyFlags);
|
||||||
extern gptr _mymalloc(uint uSize,const char *sFile,
|
extern gptr _mymalloc(size_t uSize, const char *sFile,
|
||||||
uint uLine, myf MyFlag);
|
uint uLine, myf MyFlag);
|
||||||
extern gptr _myrealloc(gptr pPtr,uint uSize,const char *sFile,
|
extern gptr _myrealloc(gptr pPtr, size_t uSize, const char *sFile,
|
||||||
uint uLine, myf MyFlag);
|
uint uLine, myf MyFlag);
|
||||||
extern gptr my_multi_malloc _VARARGS((myf MyFlags, ...));
|
extern gptr my_multi_malloc _VARARGS((myf MyFlags, ...));
|
||||||
extern void _myfree(gptr pPtr,const char *sFile,uint uLine, myf MyFlag);
|
extern void _myfree(gptr pPtr, const char *sFile, uint uLine, myf MyFlag);
|
||||||
extern int _sanity(const char *sFile,unsigned int uLine);
|
extern int _sanity(const char *sFile,unsigned int uLine);
|
||||||
extern gptr _my_memdup(const byte *from,uint length,
|
extern gptr _my_memdup(const byte *from, size_t length,
|
||||||
const char *sFile, uint uLine,myf MyFlag);
|
const char *sFile, uint uLine, myf MyFlag);
|
||||||
extern my_string _my_strdup(const char *from, const char *sFile, uint uLine,
|
extern my_string _my_strdup(const char *from, const char *sFile, uint uLine,
|
||||||
myf MyFlag);
|
myf MyFlag);
|
||||||
extern char *_my_strdup_with_length(const char *from, uint length,
|
extern char *_my_strdup_with_length(const char *from, size_t length,
|
||||||
const char *sFile, uint uLine,
|
const char *sFile, uint uLine,
|
||||||
myf MyFlag);
|
myf MyFlag);
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#define FRM_VER @DOT_FRM_VERSION@
|
#define FRM_VER @DOT_FRM_VERSION@
|
||||||
#define MYSQL_VERSION_ID @MYSQL_VERSION_ID@
|
#define MYSQL_VERSION_ID @MYSQL_VERSION_ID@
|
||||||
#define MYSQL_PORT @MYSQL_TCP_PORT@
|
#define MYSQL_PORT @MYSQL_TCP_PORT@
|
||||||
|
#define MYSQL_PORT_DEFAULT @MYSQL_TCP_PORT_DEFAULT@
|
||||||
#define MYSQL_UNIX_ADDR "@MYSQL_UNIX_ADDR@"
|
#define MYSQL_UNIX_ADDR "@MYSQL_UNIX_ADDR@"
|
||||||
#define MYSQL_CONFIG_NAME "my"
|
#define MYSQL_CONFIG_NAME "my"
|
||||||
#define MYSQL_COMPILATION_COMMENT "@COMPILATION_COMMENT@"
|
#define MYSQL_COMPILATION_COMMENT "@COMPILATION_COMMENT@"
|
||||||
|
@ -133,8 +133,21 @@ int STDCALL mysql_server_init(int argc __attribute__((unused)),
|
|||||||
{
|
{
|
||||||
struct servent *serv_ptr;
|
struct servent *serv_ptr;
|
||||||
char *env;
|
char *env;
|
||||||
|
|
||||||
|
/*
|
||||||
|
if builder specifically requested a default port, use that
|
||||||
|
(even if it coincides with our factory default).
|
||||||
|
only if they didn't do we check /etc/services (and, failing
|
||||||
|
on that, fall back to the factory default of 3306).
|
||||||
|
either default can be overridden by the environment variable
|
||||||
|
MYSQL_TCP_PORT, which in turn can be overridden with command
|
||||||
|
line options.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if MYSQL_PORT_DEFAULT == 0
|
||||||
if ((serv_ptr = getservbyname("mysql", "tcp")))
|
if ((serv_ptr = getservbyname("mysql", "tcp")))
|
||||||
mysql_port = (uint) ntohs((ushort) serv_ptr->s_port);
|
mysql_port = (uint) ntohs((ushort) serv_ptr->s_port);
|
||||||
|
#endif
|
||||||
if ((env = getenv("MYSQL_TCP_PORT")))
|
if ((env = getenv("MYSQL_TCP_PORT")))
|
||||||
mysql_port =(uint) atoi(env);
|
mysql_port =(uint) atoi(env);
|
||||||
}
|
}
|
||||||
@ -4681,14 +4694,14 @@ int cli_read_binary_rows(MYSQL_STMT *stmt)
|
|||||||
MYSQL_ROWS *cur, **prev_ptr= &result->data;
|
MYSQL_ROWS *cur, **prev_ptr= &result->data;
|
||||||
NET *net;
|
NET *net;
|
||||||
|
|
||||||
|
DBUG_ENTER("cli_read_binary_rows");
|
||||||
|
|
||||||
if (!mysql)
|
if (!mysql)
|
||||||
{
|
{
|
||||||
set_stmt_error(stmt, CR_SERVER_LOST, unknown_sqlstate);
|
set_stmt_error(stmt, CR_SERVER_LOST, unknown_sqlstate);
|
||||||
return 1;
|
DBUG_RETURN(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
DBUG_ENTER("cli_read_binary_rows");
|
|
||||||
|
|
||||||
net = &mysql->net;
|
net = &mysql->net;
|
||||||
mysql= mysql->last_used_con;
|
mysql= mysql->last_used_con;
|
||||||
|
|
||||||
|
@ -43,7 +43,9 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -I..
|
|||||||
|
|
||||||
dist-hook:
|
dist-hook:
|
||||||
mkdir -p $(distdir)/t $(distdir)/r $(distdir)/include \
|
mkdir -p $(distdir)/t $(distdir)/r $(distdir)/include \
|
||||||
$(distdir)/std_data $(distdir)/lib
|
$(distdir)/std_data \
|
||||||
|
$(distdir)/std_data/ndb_backup50_data_be $(distdir)/std_data/ndb_backup50_data_le \
|
||||||
|
$(distdir)/lib
|
||||||
-$(INSTALL_DATA) $(srcdir)/t/*.def $(distdir)/t
|
-$(INSTALL_DATA) $(srcdir)/t/*.def $(distdir)/t
|
||||||
$(INSTALL_DATA) $(srcdir)/t/*.test $(distdir)/t
|
$(INSTALL_DATA) $(srcdir)/t/*.test $(distdir)/t
|
||||||
-$(INSTALL_DATA) $(srcdir)/t/*.imtest $(distdir)/t
|
-$(INSTALL_DATA) $(srcdir)/t/*.imtest $(distdir)/t
|
||||||
@ -62,6 +64,8 @@ dist-hook:
|
|||||||
$(INSTALL_DATA) $(srcdir)/std_data/*.frm $(distdir)/std_data
|
$(INSTALL_DATA) $(srcdir)/std_data/*.frm $(distdir)/std_data
|
||||||
$(INSTALL_DATA) $(srcdir)/std_data/*.MY* $(distdir)/std_data
|
$(INSTALL_DATA) $(srcdir)/std_data/*.MY* $(distdir)/std_data
|
||||||
$(INSTALL_DATA) $(srcdir)/std_data/*.cnf $(distdir)/std_data
|
$(INSTALL_DATA) $(srcdir)/std_data/*.cnf $(distdir)/std_data
|
||||||
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_be/BACKUP* $(distdir)/std_data/ndb_backup50_data_be
|
||||||
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_le/BACKUP* $(distdir)/std_data/ndb_backup50_data_le
|
||||||
$(INSTALL_DATA) $(srcdir)/lib/*.pl $(distdir)/lib
|
$(INSTALL_DATA) $(srcdir)/lib/*.pl $(distdir)/lib
|
||||||
-rm -rf `find $(distdir)/suite -type d -name SCCS`
|
-rm -rf `find $(distdir)/suite -type d -name SCCS`
|
||||||
|
|
||||||
@ -71,6 +75,8 @@ install-data-local:
|
|||||||
$(DESTDIR)$(testdir)/r \
|
$(DESTDIR)$(testdir)/r \
|
||||||
$(DESTDIR)$(testdir)/include \
|
$(DESTDIR)$(testdir)/include \
|
||||||
$(DESTDIR)$(testdir)/std_data \
|
$(DESTDIR)$(testdir)/std_data \
|
||||||
|
$(DESTDIR)$(testdir)/std_data/ndb_backup50_data_be \
|
||||||
|
$(DESTDIR)$(testdir)/std_data/ndb_backup50_data_le \
|
||||||
$(DESTDIR)$(testdir)/lib
|
$(DESTDIR)$(testdir)/lib
|
||||||
$(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(testdir)
|
$(INSTALL_DATA) $(srcdir)/README $(DESTDIR)$(testdir)
|
||||||
-$(INSTALL_DATA) $(srcdir)/t/*.def $(DESTDIR)$(testdir)/t
|
-$(INSTALL_DATA) $(srcdir)/t/*.def $(DESTDIR)$(testdir)/t
|
||||||
@ -95,6 +101,8 @@ install-data-local:
|
|||||||
$(INSTALL_DATA) $(srcdir)/std_data/*.frm $(DESTDIR)$(testdir)/std_data
|
$(INSTALL_DATA) $(srcdir)/std_data/*.frm $(DESTDIR)$(testdir)/std_data
|
||||||
$(INSTALL_DATA) $(srcdir)/std_data/*.MY* $(DESTDIR)$(testdir)/std_data
|
$(INSTALL_DATA) $(srcdir)/std_data/*.MY* $(DESTDIR)$(testdir)/std_data
|
||||||
$(INSTALL_DATA) $(srcdir)/std_data/*.cnf $(DESTDIR)$(testdir)/std_data
|
$(INSTALL_DATA) $(srcdir)/std_data/*.cnf $(DESTDIR)$(testdir)/std_data
|
||||||
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_be/BACKUP* $(DESTDIR)$(testdir)/std_data/ndb_backup50_data_be
|
||||||
|
$(INSTALL_DATA) $(srcdir)/std_data/ndb_backup50_data_le/BACKUP* $(DESTDIR)$(testdir)/std_data/ndb_backup50_data_le
|
||||||
$(INSTALL_DATA) $(srcdir)/lib/*.pl $(DESTDIR)$(testdir)/lib
|
$(INSTALL_DATA) $(srcdir)/lib/*.pl $(DESTDIR)$(testdir)/lib
|
||||||
for f in `(cd $(srcdir); find suite -type f | grep -v SCCS)`; \
|
for f in `(cd $(srcdir); find suite -type f | grep -v SCCS)`; \
|
||||||
do \
|
do \
|
||||||
@ -131,6 +139,7 @@ SUFFIXES = .sh
|
|||||||
-e 's!@''PERL''@!@PERL@!' \
|
-e 's!@''PERL''@!@PERL@!' \
|
||||||
-e 's!@''VERSION''@!@VERSION@!' \
|
-e 's!@''VERSION''@!@VERSION@!' \
|
||||||
-e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
|
-e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
|
||||||
|
-e 's!@''MYSQL_TCP_PORT_DEFAULT''@!@MYSQL_TCP_PORT_DEFAULT@!' \
|
||||||
-e 's!@''MYSQL_BASE_VERSION''@!@MYSQL_BASE_VERSION@!' \
|
-e 's!@''MYSQL_BASE_VERSION''@!@MYSQL_BASE_VERSION@!' \
|
||||||
-e 's!@''MYSQL_UNIX_ADDR''@!@MYSQL_UNIX_ADDR@!' \
|
-e 's!@''MYSQL_UNIX_ADDR''@!@MYSQL_UNIX_ADDR@!' \
|
||||||
-e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
|
-e 's!@''MYSQL_TCP_PORT''@!@MYSQL_TCP_PORT@!' \
|
||||||
|
@ -3,5 +3,5 @@
|
|||||||
#
|
#
|
||||||
--require r/have_bug25714.require
|
--require r/have_bug25714.require
|
||||||
disable_query_log;
|
disable_query_log;
|
||||||
eval select LENGTH("MYSQL_BUG25714") > 0 as "have_bug25714_exe";
|
eval select LENGTH("$MYSQL_BUG25714") > 0 as "have_bug25714_exe";
|
||||||
enable_query_log;
|
enable_query_log;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
--require r/true.require
|
if (`select convert(@@version_compile_os using latin1) IN ("Win32","Win64","Windows") = 0`)
|
||||||
disable_query_log;
|
{
|
||||||
select convert(@@version_compile_os using latin1) IN ("Win32","Win64","Windows") as "TRUE";
|
skip Need windows;
|
||||||
enable_query_log;
|
}
|
||||||
|
|
||||||
|
@ -17,7 +17,16 @@ USE_MANAGER=0
|
|||||||
MY_TZ=GMT-3
|
MY_TZ=GMT-3
|
||||||
TZ=$MY_TZ; export TZ # for UNIX_TIMESTAMP tests to work
|
TZ=$MY_TZ; export TZ # for UNIX_TIMESTAMP tests to work
|
||||||
LOCAL_SOCKET=@MYSQL_UNIX_ADDR@
|
LOCAL_SOCKET=@MYSQL_UNIX_ADDR@
|
||||||
MYSQL_TCP_PORT=@MYSQL_TCP_PORT@
|
|
||||||
|
if [ -z "$MYSQL_TCP_PORT" ]; then
|
||||||
|
MYSQL_TCP_PORT=@MYSQL_TCP_PORT@
|
||||||
|
if [ @MYSQL_TCP_PORT_DEFAULT@ -eq 0 ]; then
|
||||||
|
ESP=`getent services mysql/tcp`
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
MYSQL_TCP_PORT=`echo "$ESP"|sed -e's-^[a-z]*[ ]*\([0-9]*\)/[a-z]*$-\1-g'`
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
umask 022
|
umask 022
|
||||||
|
|
||||||
|
@ -3708,6 +3708,11 @@ sub mysqld_arguments ($$$$) {
|
|||||||
mtr_add_arg($args, "%s--language=%s", $prefix, $path_language);
|
mtr_add_arg($args, "%s--language=%s", $prefix, $path_language);
|
||||||
mtr_add_arg($args, "%s--tmpdir=$opt_tmpdir", $prefix);
|
mtr_add_arg($args, "%s--tmpdir=$opt_tmpdir", $prefix);
|
||||||
|
|
||||||
|
# Increase default connect_timeout to avoid intermittent
|
||||||
|
# disconnects when test servers are put under load
|
||||||
|
# see BUG#28359
|
||||||
|
mtr_add_arg($args, "%s--connect-timeout=60", $prefix);
|
||||||
|
|
||||||
if ( $opt_valgrind_mysqld )
|
if ( $opt_valgrind_mysqld )
|
||||||
{
|
{
|
||||||
mtr_add_arg($args, "%s--skip-safemalloc", $prefix);
|
mtr_add_arg($args, "%s--skip-safemalloc", $prefix);
|
||||||
|
@ -54,7 +54,7 @@ SHOW FULL COLUMNS FROM t1;
|
|||||||
Field Type Collation Null Key Default Extra Privileges Comment
|
Field Type Collation Null Key Default Extra Privileges Comment
|
||||||
GROUP_ID int(10) unsigned NULL NO PRI 0 #
|
GROUP_ID int(10) unsigned NULL NO PRI 0 #
|
||||||
LANG_ID smallint(5) unsigned NULL NO PRI 0 #
|
LANG_ID smallint(5) unsigned NULL NO PRI 0 #
|
||||||
NAME char(80) latin1_swedish_ci NO MUL #
|
NAME char(80) latin1_swedish_ci NO MUL NULL #
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
create table t1 (n int);
|
create table t1 (n int);
|
||||||
insert into t1 values(9),(3),(12),(10);
|
insert into t1 values(9),(3),(12),(10);
|
||||||
|
@ -11123,10 +11123,11 @@ auto fld1 companynr fld3 fld4 fld5 fld6
|
|||||||
SELECT COUNT(auto) FROM t2;
|
SELECT COUNT(auto) FROM t2;
|
||||||
COUNT(auto)
|
COUNT(auto)
|
||||||
1213
|
1213
|
||||||
INSERT DELAYED INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily','');
|
INSERT DELAYED INTO t2 VALUES (99999,011403,37,'the','delayed','insert','');
|
||||||
|
INSERT INTO t2 VALUES (100000,000001,00,'after','delayed','insert','');
|
||||||
SELECT COUNT(auto) FROM t2;
|
SELECT COUNT(auto) FROM t2;
|
||||||
COUNT(auto)
|
COUNT(auto)
|
||||||
1214
|
1215
|
||||||
ALTER TABLE t2 DROP COLUMN fld6;
|
ALTER TABLE t2 DROP COLUMN fld6;
|
||||||
SHOW CREATE TABLE t2;
|
SHOW CREATE TABLE t2;
|
||||||
Table Create Table
|
Table Create Table
|
||||||
@ -11138,7 +11139,7 @@ t2 CREATE TABLE `t2` (
|
|||||||
`fld4` char(35) NOT NULL default '',
|
`fld4` char(35) NOT NULL default '',
|
||||||
`fld5` char(35) NOT NULL default ''
|
`fld5` char(35) NOT NULL default ''
|
||||||
) ENGINE=ARCHIVE DEFAULT CHARSET=latin1
|
) ENGINE=ARCHIVE DEFAULT CHARSET=latin1
|
||||||
SELECT * from t2;
|
SELECT * from t2 WHERE auto != 100000;
|
||||||
auto fld1 companynr fld3 fld4 fld5
|
auto fld1 companynr fld3 fld4 fld5
|
||||||
1 000001 00 Omaha teethe neat
|
1 000001 00 Omaha teethe neat
|
||||||
2 011401 37 breaking dreaded Steinberg
|
2 011401 37 breaking dreaded Steinberg
|
||||||
@ -12353,7 +12354,7 @@ auto fld1 companynr fld3 fld4 fld5
|
|||||||
2 011401 37 breaking dreaded Steinberg
|
2 011401 37 breaking dreaded Steinberg
|
||||||
3 011402 37 Romans scholastics jarring
|
3 011402 37 Romans scholastics jarring
|
||||||
4 011403 37 intercepted audiology tinily
|
4 011403 37 intercepted audiology tinily
|
||||||
4 011403 37 intercepted audiology tinily
|
99999 011403 37 the delayed insert
|
||||||
drop table t1, t2, t4;
|
drop table t1, t2, t4;
|
||||||
create table t1 (i int) engine=archive;
|
create table t1 (i int) engine=archive;
|
||||||
insert into t1 values (1);
|
insert into t1 values (1);
|
||||||
|
@ -26,3 +26,18 @@ select 1 # The rest of the row will be ignored
|
|||||||
1
|
1
|
||||||
1
|
1
|
||||||
/* line with only comment */;
|
/* line with only comment */;
|
||||||
|
drop table if exists table_28779;
|
||||||
|
create table table_28779 (a int);
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*' AND b = 'bar';";
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '/*' AND b = 'bar'' at line 1
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*' AND b = 'bar';*";
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '/*' AND b = 'bar';*' at line 1
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*! AND 2=2;";
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*! AND 2=2;*";
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ';*' at line 1
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*!98765' AND b = 'bar';";
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '/*!98765' AND b = 'bar'' at line 1
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*!98765' AND b = 'bar';*";
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '/*!98765' AND b = 'bar';*' at line 1
|
||||||
|
drop table table_28779;
|
||||||
|
@ -430,7 +430,7 @@ d date YES NULL
|
|||||||
e varchar(1) NO
|
e varchar(1) NO
|
||||||
f datetime YES NULL
|
f datetime YES NULL
|
||||||
g time YES NULL
|
g time YES NULL
|
||||||
h longblob NO
|
h longblob NO NULL
|
||||||
dd time YES NULL
|
dd time YES NULL
|
||||||
select * from t2;
|
select * from t2;
|
||||||
a b c d e f g h dd
|
a b c d e f g h dd
|
||||||
|
@ -488,7 +488,7 @@ t1 CREATE TABLE `t1` (
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||||
SHOW FIELDS FROM t1;
|
SHOW FIELDS FROM t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
latin1_f char(32) NO
|
latin1_f char(32) NO NULL
|
||||||
ALTER TABLE t1 CHANGE latin1_f
|
ALTER TABLE t1 CHANGE latin1_f
|
||||||
latin1_f CHAR(32) CHARACTER SET latin1 COLLATE latin1_bin;
|
latin1_f CHAR(32) CHARACTER SET latin1 COLLATE latin1_bin;
|
||||||
SHOW CREATE TABLE t1;
|
SHOW CREATE TABLE t1;
|
||||||
|
@ -54,7 +54,7 @@ Table Create Table
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'
|
||||||
SHOW FIELDS FROM <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
|
SHOW FIELDS FROM <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> char(32) NO
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> char(32) NO NULL
|
||||||
SET CHARACTER SET cp1251;
|
SET CHARACTER SET cp1251;
|
||||||
SHOW TABLES;
|
SHOW TABLES;
|
||||||
Tables_in_test
|
Tables_in_test
|
||||||
@ -66,7 +66,7 @@ Table Create Table
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>'
|
||||||
SHOW FIELDS FROM <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
|
SHOW FIELDS FROM <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> char(32) NO
|
<EFBFBD><EFBFBD><EFBFBD><EFBFBD> char(32) NO NULL
|
||||||
SET CHARACTER SET utf8;
|
SET CHARACTER SET utf8;
|
||||||
SHOW TABLES;
|
SHOW TABLES;
|
||||||
Tables_in_test
|
Tables_in_test
|
||||||
@ -78,7 +78,7 @@ Table Create Table
|
|||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='комментарий таблицы'
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='комментарий таблицы'
|
||||||
SHOW FIELDS FROM таблица;
|
SHOW FIELDS FROM таблица;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
поле char(32) NO
|
поле char(32) NO NULL
|
||||||
SET CHARACTER SET koi8r;
|
SET CHARACTER SET koi8r;
|
||||||
DROP TABLE <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
|
DROP TABLE <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>;
|
||||||
SET CHARACTER SET default;
|
SET CHARACTER SET default;
|
||||||
|
@ -115,7 +115,7 @@ Warning 1364 Field 'd' doesn't have a default value
|
|||||||
desc bug20691;
|
desc bug20691;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
i int(11) YES NULL
|
i int(11) YES NULL
|
||||||
d datetime NO
|
d datetime NO NULL
|
||||||
dn datetime NO 0000-00-00 00:00:00
|
dn datetime NO 0000-00-00 00:00:00
|
||||||
insert into bug20691 values (3, DEFAULT, DEFAULT), (3, '1975-07-10 07:10:03', '1978-01-13 14:08:51'), (3, DEFAULT, DEFAULT);
|
insert into bug20691 values (3, DEFAULT, DEFAULT), (3, '1975-07-10 07:10:03', '1978-01-13 14:08:51'), (3, DEFAULT, DEFAULT);
|
||||||
Warnings:
|
Warnings:
|
||||||
|
@ -183,6 +183,17 @@ select @a;
|
|||||||
@a
|
@a
|
||||||
1
|
1
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
CREATE TABLE t1 (
|
||||||
|
`date` date ,
|
||||||
|
`time` time ,
|
||||||
|
`seq` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
PRIMARY KEY (`seq`),
|
||||||
|
KEY `seq` (`seq`),
|
||||||
|
KEY `time` (`time`),
|
||||||
|
KEY `date` (`date`)
|
||||||
|
);
|
||||||
|
DELETE FROM t1 ORDER BY date ASC, time ASC LIMIT 1;
|
||||||
|
drop table t1;
|
||||||
End of 4.1 tests
|
End of 4.1 tests
|
||||||
CREATE TABLE t1 (a int not null,b int not null);
|
CREATE TABLE t1 (a int not null,b int not null);
|
||||||
CREATE TABLE t2 (a int not null, b int not null, primary key (a,b));
|
CREATE TABLE t2 (a int not null, b int not null, primary key (a,b));
|
||||||
@ -223,3 +234,40 @@ ERROR 42S22: Unknown column 't2.x' in 'order clause'
|
|||||||
DELETE FROM t1 ORDER BY (SELECT x);
|
DELETE FROM t1 ORDER BY (SELECT x);
|
||||||
ERROR 42S22: Unknown column 'x' in 'field list'
|
ERROR 42S22: Unknown column 'x' in 'field list'
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
CREATE TABLE t1 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
CREATE TABLE t2 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
CREATE DATABASE db1;
|
||||||
|
CREATE TABLE db1.t1 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
INSERT INTO db1.t1 (a) SELECT * FROM t1;
|
||||||
|
CREATE DATABASE db2;
|
||||||
|
CREATE TABLE db2.t1 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
INSERT INTO db2.t1 (a) SELECT * FROM t2;
|
||||||
|
DELETE FROM t1 alias USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'alias USING t1, t2 alias WHERE t1.a = alias.a' at line 1
|
||||||
|
DELETE FROM alias USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
DELETE FROM t1, alias USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
DELETE FROM t1, t2 USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
ERROR 42S02: Unknown table 't2' in MULTI DELETE
|
||||||
|
DELETE FROM db1.t1 alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a' at line 1
|
||||||
|
DELETE FROM alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
|
||||||
|
ERROR 42S02: Unknown table 'alias' in MULTI DELETE
|
||||||
|
DELETE FROM db2.alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
|
||||||
|
DELETE FROM t1 USING t1 WHERE a = 1;
|
||||||
|
SELECT * FROM t1;
|
||||||
|
a
|
||||||
|
DELETE FROM t1 alias USING t1 alias WHERE a = 2;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'alias USING t1 alias WHERE a = 2' at line 1
|
||||||
|
SELECT * FROM t1;
|
||||||
|
a
|
||||||
|
DROP TABLE t1, t2;
|
||||||
|
DROP DATABASE db1;
|
||||||
|
DROP DATABASE db2;
|
||||||
|
@ -526,10 +526,10 @@ id select_type table type possible_keys key key_len ref rows Extra
|
|||||||
1 SIMPLE t1 index NULL PRIMARY 4 NULL 3 Using index
|
1 SIMPLE t1 index NULL PRIMARY 4 NULL 3 Using index
|
||||||
EXPLAIN SELECT a,b FROM t1 GROUP BY a,b;
|
EXPLAIN SELECT a,b FROM t1 GROUP BY a,b;
|
||||||
id select_type table type possible_keys key key_len ref rows Extra
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
1 SIMPLE t1 ALL NULL NULL NULL NULL 3
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
EXPLAIN SELECT DISTINCT a,b FROM t1 GROUP BY a,b;
|
EXPLAIN SELECT DISTINCT a,b FROM t1 GROUP BY a,b;
|
||||||
id select_type table type possible_keys key key_len ref rows Extra
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
1 SIMPLE t1 ALL NULL NULL NULL NULL 3
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
CREATE TABLE t2(a INT, b INT NOT NULL, c INT NOT NULL, d INT,
|
CREATE TABLE t2(a INT, b INT NOT NULL, c INT NOT NULL, d INT,
|
||||||
PRIMARY KEY (a,b));
|
PRIMARY KEY (a,b));
|
||||||
INSERT INTO t2 VALUES (1,1,1,50), (1,2,3,40), (2,1,3,4);
|
INSERT INTO t2 VALUES (1,1,1,50), (1,2,3,40), (2,1,3,4);
|
||||||
@ -554,7 +554,7 @@ id select_type table type possible_keys key key_len ref rows Extra
|
|||||||
CREATE UNIQUE INDEX c_b_unq ON t2 (c,b);
|
CREATE UNIQUE INDEX c_b_unq ON t2 (c,b);
|
||||||
EXPLAIN SELECT DISTINCT a,b,d FROM t2 GROUP BY c,b,d;
|
EXPLAIN SELECT DISTINCT a,b,d FROM t2 GROUP BY c,b,d;
|
||||||
id select_type table type possible_keys key key_len ref rows Extra
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
1 SIMPLE t2 ALL NULL NULL NULL NULL 3
|
1 SIMPLE t2 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
DROP TABLE t1,t2;
|
DROP TABLE t1,t2;
|
||||||
create table t1 (id int, dsc varchar(50));
|
create table t1 (id int, dsc varchar(50));
|
||||||
insert into t1 values (1, "line number one"), (2, "line number two"), (3, "line number three");
|
insert into t1 values (1, "line number one"), (2, "line number two"), (3, "line number three");
|
||||||
|
@ -9,35 +9,35 @@ CREATE TABLE gis_geometrycollection (fid INTEGER NOT NULL PRIMARY KEY, g GEOMET
|
|||||||
CREATE TABLE gis_geometry (fid INTEGER NOT NULL PRIMARY KEY, g GEOMETRY);
|
CREATE TABLE gis_geometry (fid INTEGER NOT NULL PRIMARY KEY, g GEOMETRY);
|
||||||
SHOW FIELDS FROM gis_point;
|
SHOW FIELDS FROM gis_point;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g point YES NULL
|
g point YES NULL
|
||||||
SHOW FIELDS FROM gis_line;
|
SHOW FIELDS FROM gis_line;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g linestring YES NULL
|
g linestring YES NULL
|
||||||
SHOW FIELDS FROM gis_polygon;
|
SHOW FIELDS FROM gis_polygon;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g polygon YES NULL
|
g polygon YES NULL
|
||||||
SHOW FIELDS FROM gis_multi_point;
|
SHOW FIELDS FROM gis_multi_point;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g multipoint YES NULL
|
g multipoint YES NULL
|
||||||
SHOW FIELDS FROM gis_multi_line;
|
SHOW FIELDS FROM gis_multi_line;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g multilinestring YES NULL
|
g multilinestring YES NULL
|
||||||
SHOW FIELDS FROM gis_multi_polygon;
|
SHOW FIELDS FROM gis_multi_polygon;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g multipolygon YES NULL
|
g multipolygon YES NULL
|
||||||
SHOW FIELDS FROM gis_geometrycollection;
|
SHOW FIELDS FROM gis_geometrycollection;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g geometrycollection YES NULL
|
g geometrycollection YES NULL
|
||||||
SHOW FIELDS FROM gis_geometry;
|
SHOW FIELDS FROM gis_geometry;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
fid int(11) NO PRI
|
fid int(11) NO PRI NULL
|
||||||
g geometry YES NULL
|
g geometry YES NULL
|
||||||
INSERT INTO gis_point VALUES
|
INSERT INTO gis_point VALUES
|
||||||
(101, PointFromText('POINT(10 10)')),
|
(101, PointFromText('POINT(10 10)')),
|
||||||
@ -430,7 +430,7 @@ mln multilinestring YES NULL
|
|||||||
mpg multipolygon YES NULL
|
mpg multipolygon YES NULL
|
||||||
gc geometrycollection YES NULL
|
gc geometrycollection YES NULL
|
||||||
gm geometry YES NULL
|
gm geometry YES NULL
|
||||||
fid int(11) NO
|
fid int(11) NO NULL
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
SELECT AsText(GeometryFromWKB(AsWKB(GeometryFromText('POINT(1 4)'))));
|
SELECT AsText(GeometryFromWKB(AsWKB(GeometryFromText('POINT(1 4)'))));
|
||||||
AsText(GeometryFromWKB(AsWKB(GeometryFromText('POINT(1 4)'))))
|
AsText(GeometryFromWKB(AsWKB(GeometryFromText('POINT(1 4)'))))
|
||||||
|
@ -1064,3 +1064,52 @@ select t1.f1,t.* from t1, t1 t group by 1;
|
|||||||
ERROR 42000: 'test.t.f1' isn't in GROUP BY
|
ERROR 42000: 'test.t.f1' isn't in GROUP BY
|
||||||
drop table t1;
|
drop table t1;
|
||||||
SET SQL_MODE = '';
|
SET SQL_MODE = '';
|
||||||
|
CREATE TABLE t1(
|
||||||
|
a INT,
|
||||||
|
b INT NOT NULL,
|
||||||
|
c INT NOT NULL,
|
||||||
|
d INT,
|
||||||
|
UNIQUE KEY (c,b)
|
||||||
|
);
|
||||||
|
INSERT INTO t1 VALUES (1,1,1,50), (1,2,3,40), (2,1,3,4);
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 1 4
|
||||||
|
3 2 40
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 2 40
|
||||||
|
3 1 4
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
|
SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 1 4
|
||||||
|
3 2 40
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 1 4
|
||||||
|
3 2 40
|
||||||
|
EXPLAIN SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 index NULL c 8 NULL 3 Using index
|
||||||
|
SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
c b
|
||||||
|
1 1
|
||||||
|
3 1
|
||||||
|
3 2
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -489,3 +489,16 @@ handler t1 open;
|
|||||||
ERROR HY000: Table storage engine for 't1' doesn't have this option
|
ERROR HY000: Table storage engine for 't1' doesn't have this option
|
||||||
--> client 1
|
--> client 1
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
drop table if exists t1;
|
||||||
|
create table t1 (a int);
|
||||||
|
handler t1 open as t1_alias;
|
||||||
|
handler t1_alias read a next;
|
||||||
|
ERROR HY000: Key 'a' doesn't exist in table 't1_alias'
|
||||||
|
handler t1_alias READ a next where inexistent > 0;
|
||||||
|
ERROR 42S22: Unknown column 'inexistent' in 'field list'
|
||||||
|
handler t1_alias read a next;
|
||||||
|
ERROR HY000: Key 'a' doesn't exist in table 't1_alias'
|
||||||
|
handler t1_alias READ a next where inexistent > 0;
|
||||||
|
ERROR 42S22: Unknown column 'inexistent' in 'field list'
|
||||||
|
handler t1_alias close;
|
||||||
|
drop table t1;
|
||||||
|
@ -989,7 +989,7 @@ b NULL
|
|||||||
use test;
|
use test;
|
||||||
show columns from t1;
|
show columns from t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO
|
a int(11) NO NULL
|
||||||
b int(11) YES NULL
|
b int(11) YES NULL
|
||||||
drop table t1;
|
drop table t1;
|
||||||
CREATE TABLE t1 (a int);
|
CREATE TABLE t1 (a int);
|
||||||
@ -1354,4 +1354,35 @@ where event_object_table='t1';
|
|||||||
trigger_name
|
trigger_name
|
||||||
drop user mysqltest_1@localhost;
|
drop user mysqltest_1@localhost;
|
||||||
drop database mysqltest;
|
drop database mysqltest;
|
||||||
|
create table t1 (
|
||||||
|
f1 varchar(50),
|
||||||
|
f2 varchar(50) not null,
|
||||||
|
f3 varchar(50) default '',
|
||||||
|
f4 varchar(50) default NULL,
|
||||||
|
f5 bigint not null,
|
||||||
|
f6 bigint not null default 10,
|
||||||
|
f7 datetime not null,
|
||||||
|
f8 datetime default '2006-01-01'
|
||||||
|
);
|
||||||
|
select column_default from information_schema.columns where table_name= 't1';
|
||||||
|
column_default
|
||||||
|
NULL
|
||||||
|
NULL
|
||||||
|
|
||||||
|
NULL
|
||||||
|
NULL
|
||||||
|
10
|
||||||
|
NULL
|
||||||
|
2006-01-01 00:00:00
|
||||||
|
show columns from t1;
|
||||||
|
Field Type Null Key Default Extra
|
||||||
|
f1 varchar(50) YES NULL
|
||||||
|
f2 varchar(50) NO NULL
|
||||||
|
f3 varchar(50) YES
|
||||||
|
f4 varchar(50) YES NULL
|
||||||
|
f5 bigint(20) NO NULL
|
||||||
|
f6 bigint(20) NO 10
|
||||||
|
f7 datetime NO NULL
|
||||||
|
f8 datetime YES 2006-01-01 00:00:00
|
||||||
|
drop table t1;
|
||||||
End of 5.0 tests.
|
End of 5.0 tests.
|
||||||
|
@ -94,3 +94,14 @@ id x
|
|||||||
300 300
|
300 300
|
||||||
commit;
|
commit;
|
||||||
drop table t1, t2;
|
drop table t1, t2;
|
||||||
|
End of 4.1 tests
|
||||||
|
set storage_engine=innodb;
|
||||||
|
drop table if exists a;
|
||||||
|
drop table if exists A;
|
||||||
|
create table A (c int);
|
||||||
|
insert into A (c) values (0);
|
||||||
|
create table a as select * from A;
|
||||||
|
drop table A;
|
||||||
|
drop table if exists a;
|
||||||
|
set storage_engine=default;
|
||||||
|
End of 5.0 tests.
|
||||||
|
@ -1065,4 +1065,150 @@ a b
|
|||||||
ROLLBACK;
|
ROLLBACK;
|
||||||
ROLLBACK;
|
ROLLBACK;
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
CREATE TABLE t1(
|
||||||
|
a INT,
|
||||||
|
b INT NOT NULL,
|
||||||
|
c INT NOT NULL,
|
||||||
|
d INT,
|
||||||
|
UNIQUE KEY (c,b)
|
||||||
|
) engine=innodb;
|
||||||
|
INSERT INTO t1 VALUES (1,1,1,50), (1,2,3,40), (2,1,3,4);
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 1 4
|
||||||
|
3 2 40
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 1 4
|
||||||
|
3 2 40
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 3 Using filesort
|
||||||
|
SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 1 4
|
||||||
|
3 2 40
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 index NULL c 8 NULL 3
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
c b d
|
||||||
|
1 1 50
|
||||||
|
3 1 4
|
||||||
|
3 2 40
|
||||||
|
EXPLAIN SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 index NULL c 8 NULL 3 Using index
|
||||||
|
SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
c b
|
||||||
|
1 1
|
||||||
|
3 1
|
||||||
|
3 2
|
||||||
|
DROP TABLE t1;
|
||||||
|
CREATE TABLE t1 (a INT, b INT, PRIMARY KEY (a), INDEX b (b)) ENGINE=InnoDB;
|
||||||
|
INSERT INTO t1(a,b) VALUES (1,1), (2,2), (3,2);
|
||||||
|
EXPLAIN SELECT * FROM t1 WHERE b=2 ORDER BY a ASC;
|
||||||
|
id 1
|
||||||
|
select_type SIMPLE
|
||||||
|
table t1
|
||||||
|
type ref
|
||||||
|
possible_keys b
|
||||||
|
key b
|
||||||
|
key_len 5
|
||||||
|
ref const
|
||||||
|
rows 1
|
||||||
|
Extra Using where; Using index
|
||||||
|
SELECT * FROM t1 WHERE b=2 ORDER BY a ASC;
|
||||||
|
a b
|
||||||
|
2 2
|
||||||
|
3 2
|
||||||
|
EXPLAIN SELECT * FROM t1 WHERE b=2 ORDER BY a DESC;
|
||||||
|
id 1
|
||||||
|
select_type SIMPLE
|
||||||
|
table t1
|
||||||
|
type ref
|
||||||
|
possible_keys b
|
||||||
|
key b
|
||||||
|
key_len 5
|
||||||
|
ref const
|
||||||
|
rows 1
|
||||||
|
Extra Using where; Using index
|
||||||
|
SELECT * FROM t1 WHERE b=2 ORDER BY a DESC;
|
||||||
|
a b
|
||||||
|
3 2
|
||||||
|
2 2
|
||||||
|
EXPLAIN SELECT * FROM t1 ORDER BY b ASC, a ASC;
|
||||||
|
id 1
|
||||||
|
select_type SIMPLE
|
||||||
|
table t1
|
||||||
|
type index
|
||||||
|
possible_keys NULL
|
||||||
|
key b
|
||||||
|
key_len 5
|
||||||
|
ref NULL
|
||||||
|
rows 3
|
||||||
|
Extra Using index
|
||||||
|
SELECT * FROM t1 ORDER BY b ASC, a ASC;
|
||||||
|
a b
|
||||||
|
1 1
|
||||||
|
2 2
|
||||||
|
3 2
|
||||||
|
EXPLAIN SELECT * FROM t1 ORDER BY b DESC, a DESC;
|
||||||
|
id 1
|
||||||
|
select_type SIMPLE
|
||||||
|
table t1
|
||||||
|
type index
|
||||||
|
possible_keys NULL
|
||||||
|
key b
|
||||||
|
key_len 5
|
||||||
|
ref NULL
|
||||||
|
rows 3
|
||||||
|
Extra Using index
|
||||||
|
SELECT * FROM t1 ORDER BY b DESC, a DESC;
|
||||||
|
a b
|
||||||
|
3 2
|
||||||
|
2 2
|
||||||
|
1 1
|
||||||
|
EXPLAIN SELECT * FROM t1 ORDER BY b ASC, a DESC;
|
||||||
|
id 1
|
||||||
|
select_type SIMPLE
|
||||||
|
table t1
|
||||||
|
type index
|
||||||
|
possible_keys NULL
|
||||||
|
key b
|
||||||
|
key_len 5
|
||||||
|
ref NULL
|
||||||
|
rows 3
|
||||||
|
Extra Using index; Using filesort
|
||||||
|
SELECT * FROM t1 ORDER BY b ASC, a DESC;
|
||||||
|
a b
|
||||||
|
1 1
|
||||||
|
3 2
|
||||||
|
2 2
|
||||||
|
EXPLAIN SELECT * FROM t1 ORDER BY b DESC, a ASC;
|
||||||
|
id 1
|
||||||
|
select_type SIMPLE
|
||||||
|
table t1
|
||||||
|
type index
|
||||||
|
possible_keys NULL
|
||||||
|
key b
|
||||||
|
key_len 5
|
||||||
|
ref NULL
|
||||||
|
rows 3
|
||||||
|
Extra Using index; Using filesort
|
||||||
|
SELECT * FROM t1 ORDER BY b DESC, a ASC;
|
||||||
|
a b
|
||||||
|
2 2
|
||||||
|
3 2
|
||||||
|
1 1
|
||||||
|
DROP TABLE t1;
|
||||||
End of 5.0 tests
|
End of 5.0 tests
|
||||||
|
@ -336,8 +336,8 @@ UNIQUE i1idx (i1),
|
|||||||
UNIQUE i2idx (i2));
|
UNIQUE i2idx (i2));
|
||||||
desc t1;
|
desc t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
i1 int(11) NO PRI
|
i1 int(11) NO PRI NULL
|
||||||
i2 int(11) NO UNI
|
i2 int(11) NO UNI NULL
|
||||||
show create table t1;
|
show create table t1;
|
||||||
Table Create Table
|
Table Create Table
|
||||||
t1 CREATE TABLE `t1` (
|
t1 CREATE TABLE `t1` (
|
||||||
@ -392,27 +392,27 @@ drop table t1;
|
|||||||
create table t1 (a int not null primary key, b varchar(20) not null unique);
|
create table t1 (a int not null primary key, b varchar(20) not null unique);
|
||||||
desc t1;
|
desc t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO PRI
|
a int(11) NO PRI NULL
|
||||||
b varchar(20) NO UNI
|
b varchar(20) NO UNI NULL
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (a int not null primary key, b int not null unique);
|
create table t1 (a int not null primary key, b int not null unique);
|
||||||
desc t1;
|
desc t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO PRI
|
a int(11) NO PRI NULL
|
||||||
b int(11) NO UNI
|
b int(11) NO UNI NULL
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (a int not null primary key, b varchar(20) not null, unique (b(10)));
|
create table t1 (a int not null primary key, b varchar(20) not null, unique (b(10)));
|
||||||
desc t1;
|
desc t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO PRI
|
a int(11) NO PRI NULL
|
||||||
b varchar(20) NO UNI
|
b varchar(20) NO UNI NULL
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table t1 (a int not null primary key, b varchar(20) not null, c varchar(20) not null, unique(b(10),c(10)));
|
create table t1 (a int not null primary key, b varchar(20) not null, c varchar(20) not null, unique(b(10),c(10)));
|
||||||
desc t1;
|
desc t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO PRI
|
a int(11) NO PRI NULL
|
||||||
b varchar(20) NO MUL
|
b varchar(20) NO MUL NULL
|
||||||
c varchar(20) NO
|
c varchar(20) NO NULL
|
||||||
drop table t1;
|
drop table t1;
|
||||||
CREATE TABLE t1 (
|
CREATE TABLE t1 (
|
||||||
a INTEGER auto_increment PRIMARY KEY,
|
a INTEGER auto_increment PRIMARY KEY,
|
||||||
|
@ -91,7 +91,7 @@ i j k
|
|||||||
NULL 1 NULL
|
NULL 1 NULL
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
i int(11) YES NULL
|
i int(11) YES NULL
|
||||||
j int(11) NO
|
j int(11) NO NULL
|
||||||
k int(11) YES NULL
|
k int(11) YES NULL
|
||||||
+------+---+------+
|
+------+---+------+
|
||||||
| i | j | k |
|
| i | j | k |
|
||||||
@ -102,7 +102,7 @@ k int(11) YES NULL
|
|||||||
| Field | Type | Null | Key | Default | Extra |
|
| Field | Type | Null | Key | Default | Extra |
|
||||||
+-------+---------+------+-----+---------+-------+
|
+-------+---------+------+-----+---------+-------+
|
||||||
| i | int(11) | YES | | NULL | |
|
| i | int(11) | YES | | NULL | |
|
||||||
| j | int(11) | NO | | | |
|
| j | int(11) | NO | | NULL | |
|
||||||
| k | int(11) | YES | | NULL | |
|
| k | int(11) | YES | | NULL | |
|
||||||
+-------+---------+------+-----+---------+-------+
|
+-------+---------+------+-----+---------+-------+
|
||||||
i s1
|
i s1
|
||||||
@ -176,4 +176,6 @@ ERROR at line 1: DELIMITER cannot contain a backslash character
|
|||||||
ERROR at line 1: DELIMITER cannot contain a backslash character
|
ERROR at line 1: DELIMITER cannot contain a backslash character
|
||||||
1
|
1
|
||||||
1
|
1
|
||||||
|
1
|
||||||
|
1
|
||||||
End of 5.0 tests
|
End of 5.0 tests
|
||||||
|
4
mysql-test/r/mysqldump-compat.result
Normal file
4
mysql-test/r/mysqldump-compat.result
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
CREATE DATABASE mysqldump_30126;
|
||||||
|
USE mysqldump_30126;
|
||||||
|
CREATE TABLE t1 (c1 int);
|
||||||
|
DROP DATABASE mysqldump_30126;
|
2153
mysql-test/r/named_pipe.result
Normal file
2153
mysql-test/r/named_pipe.result
Normal file
File diff suppressed because it is too large
Load Diff
8
mysql-test/r/ndb_bug26793.result
Normal file
8
mysql-test/r/ndb_bug26793.result
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
DROP TABLE IF EXISTS t1;
|
||||||
|
CREATE TABLE `test` (
|
||||||
|
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
|
||||||
|
`t` VARCHAR( 10 ) NOT NULL
|
||||||
|
) ENGINE = ndbcluster;
|
||||||
|
GRANT USAGE ON *.* TO user1@localhost IDENTIFIED BY 'pass';
|
||||||
|
DROP TABLE `test`.`test`;
|
||||||
|
drop user user1@localhost;
|
@ -405,3 +405,22 @@ a b
|
|||||||
1 1
|
1 1
|
||||||
10 10
|
10 10
|
||||||
drop table t2;
|
drop table t2;
|
||||||
|
create table t1 (id int primary key) engine ndb;
|
||||||
|
insert into t1 values (1), (2), (3);
|
||||||
|
create table t2 (id int primary key) engine ndb;
|
||||||
|
insert into t2 select id from t1;
|
||||||
|
create trigger kaboom after delete on t1
|
||||||
|
for each row begin
|
||||||
|
delete from t2 where id=old.id;
|
||||||
|
end|
|
||||||
|
select * from t1 order by id;
|
||||||
|
id
|
||||||
|
1
|
||||||
|
2
|
||||||
|
3
|
||||||
|
delete from t1 where id in (1,2);
|
||||||
|
select * from t2 order by id;
|
||||||
|
id
|
||||||
|
3
|
||||||
|
drop trigger kaboom;
|
||||||
|
drop table t1;
|
||||||
|
200
mysql-test/r/ndb_restore_different_endian_data.result
Normal file
200
mysql-test/r/ndb_restore_different_endian_data.result
Normal file
@ -0,0 +1,200 @@
|
|||||||
|
USE test;
|
||||||
|
DROP TABLE IF EXISTS t_num,t_datetime,t_string_1,t_string_2,t_gis;
|
||||||
|
SHOW TABLES;
|
||||||
|
Tables_in_test
|
||||||
|
t_gis
|
||||||
|
t_string_1
|
||||||
|
t_num
|
||||||
|
t_string_2
|
||||||
|
t_datetime
|
||||||
|
SHOW CREATE TABLE t_num;
|
||||||
|
Table Create Table
|
||||||
|
t_num CREATE TABLE `t_num` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_bit` bit(64) default NULL,
|
||||||
|
`t_tinyint` tinyint(4) default NULL,
|
||||||
|
`t_bool` tinyint(1) default NULL,
|
||||||
|
`t_smallint` smallint(6) default NULL,
|
||||||
|
`t_mediumint` mediumint(9) default NULL,
|
||||||
|
`t_int` int(11) default NULL,
|
||||||
|
`t_bigint` bigint(20) default NULL,
|
||||||
|
`t_float` float default NULL,
|
||||||
|
`t_double` double default NULL,
|
||||||
|
`t_decimal` decimal(37,16) default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_datetime;
|
||||||
|
Table Create Table
|
||||||
|
t_datetime CREATE TABLE `t_datetime` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_date` date default NULL,
|
||||||
|
`t_datetime` datetime default NULL,
|
||||||
|
`t_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
||||||
|
`t_time` time default NULL,
|
||||||
|
`t_year` year(4) default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_string_1;
|
||||||
|
Table Create Table
|
||||||
|
t_string_1 CREATE TABLE `t_string_1` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_char` char(255) default NULL,
|
||||||
|
`t_varchar` varchar(655) default NULL,
|
||||||
|
`t_binary` binary(255) default NULL,
|
||||||
|
`t_varbinary` varbinary(6553) default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_string_2;
|
||||||
|
Table Create Table
|
||||||
|
t_string_2 CREATE TABLE `t_string_2` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_tinyblob` tinyblob,
|
||||||
|
`t_tinytext` tinytext,
|
||||||
|
`t_blob` blob,
|
||||||
|
`t_text` text,
|
||||||
|
`t_mediumblob` mediumblob,
|
||||||
|
`t_mediumtext` mediumtext,
|
||||||
|
`t_longblob` longblob,
|
||||||
|
`t_longtext` longtext,
|
||||||
|
`t_enum` enum('001001','001004','001010','001018','001019','001020','001021','001027','001028','001029','001030','001031','001100','002003','002004','002005','002007') NOT NULL default '001001',
|
||||||
|
`t_set` set('a','B') default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_gis;
|
||||||
|
Table Create Table
|
||||||
|
t_gis CREATE TABLE `t_gis` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_point` point default NULL,
|
||||||
|
`t_linestring` linestring default NULL,
|
||||||
|
`t_polygon` polygon default NULL,
|
||||||
|
`t_multipoint` multipoint default NULL,
|
||||||
|
`t_multilinestring` multilinestring default NULL,
|
||||||
|
`t_multipolygon` multipolygon default NULL,
|
||||||
|
`t_geometrycollection` geometrycollection default NULL,
|
||||||
|
`t_geometry` geometry default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SELECT * FROM t_datetime;
|
||||||
|
t_pk t_date t_datetime t_timestamp t_time t_year
|
||||||
|
1 1998-01-01 2006-08-10 10:11:12 2002-10-29 16:51:06 19:38:34 2155
|
||||||
|
SELECT t_pk,hex(t_bit),t_tinyint,t_bool,t_smallint,t_mediumint,t_int,t_bigint,t_float,t_double,t_decimal FROM t_num;
|
||||||
|
t_pk hex(t_bit) t_tinyint t_bool t_smallint t_mediumint t_int t_bigint t_float t_double t_decimal
|
||||||
|
1 AAAAAAAAAAAAAAAA 125 1 32765 8388606 2147483647 9223372036854775807 1e+20 1e+150 331.0000000000000000
|
||||||
|
SELECT t_pk,t_char,t_varchar,hex(t_binary),hex(t_varbinary) FROM t_string_1;
|
||||||
|
t_pk t_char t_varchar hex(t_binary) hex(t_varbinary)
|
||||||
|
1 abcdefghijklmn abcdefghijklmnabcdefghijklmnabcdefghijklmnabcdefghijklmn 612020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4100
|
||||||
|
SELECT * FROM t_string_2;
|
||||||
|
t_pk t_tinyblob t_tinytext t_blob t_text t_mediumblob t_mediumtext t_longblob t_longtext t_enum t_set
|
||||||
|
1 abcdefghijklmnabcdefghijklmn abcdefghijklmnabcdefghijklmn a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 001001 a
|
||||||
|
SELECT AsText(t_point), AsText(t_linestring),AsText(t_polygon) FROM t_gis ORDER by t_pk;
|
||||||
|
AsText(t_point) AsText(t_linestring) AsText(t_polygon)
|
||||||
|
POINT(10 10) LINESTRING(10 10,20 10,20 20,10 20,10 10) POLYGON((0 0,50 0,50 50,0 50,0 0),(10 10,20 10,20 20,10 20,10 10))
|
||||||
|
POINT(10 20) LINESTRING(10 10,40 10) POLYGON((0 0,30 0,30 30,0 0))
|
||||||
|
SELECT AsText(t_multipoint), AsText(t_multilinestring),AsText(t_multipolygon) FROM t_gis ORDER by t_pk;
|
||||||
|
AsText(t_multipoint) AsText(t_multilinestring) AsText(t_multipolygon)
|
||||||
|
MULTIPOINT(1 1,11 11,11 21,21 21) MULTILINESTRING((10 48,10 21,10 0)) MULTIPOLYGON(((28 26,28 0,84 0,84 42,28 26),(52 18,66 23,73 9,48 6,52 18)),((59 18,67 18,67 13,59 13,59 18)))
|
||||||
|
MULTIPOINT(3 6,4 10) MULTILINESTRING((1 2,3 5),(2 5,5 8,21 7)) MULTIPOLYGON(((0 3,3 3,3 0,0 3)))
|
||||||
|
SELECT AsText(t_geometrycollection), AsText(t_geometry) FROM t_gis ORDER by t_pk;
|
||||||
|
AsText(t_geometrycollection) AsText(t_geometry)
|
||||||
|
GEOMETRYCOLLECTION(POINT(0 0),LINESTRING(0 0,10 10)) MULTIPOLYGON(((28 26,28 0,84 0,84 42,28 26),(52 18,66 23,73 9,48 6,52 18)),((59 18,67 18,67 13,59 13,59 18)))
|
||||||
|
GEOMETRYCOLLECTION(POINT(44 6),LINESTRING(3 6,7 9)) GEOMETRYCOLLECTION(POINT(44 6),LINESTRING(3 6,7 9))
|
||||||
|
DROP TABLE t_num,t_datetime,t_string_1,t_string_2,t_gis;
|
||||||
|
SHOW TABLES;
|
||||||
|
Tables_in_test
|
||||||
|
t_gis
|
||||||
|
t_string_1
|
||||||
|
t_num
|
||||||
|
t_string_2
|
||||||
|
t_datetime
|
||||||
|
SHOW CREATE TABLE t_num;
|
||||||
|
Table Create Table
|
||||||
|
t_num CREATE TABLE `t_num` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_bit` bit(64) default NULL,
|
||||||
|
`t_tinyint` tinyint(4) default NULL,
|
||||||
|
`t_bool` tinyint(1) default NULL,
|
||||||
|
`t_smallint` smallint(6) default NULL,
|
||||||
|
`t_mediumint` mediumint(9) default NULL,
|
||||||
|
`t_int` int(11) default NULL,
|
||||||
|
`t_bigint` bigint(20) default NULL,
|
||||||
|
`t_float` float default NULL,
|
||||||
|
`t_double` double default NULL,
|
||||||
|
`t_decimal` decimal(37,16) default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_datetime;
|
||||||
|
Table Create Table
|
||||||
|
t_datetime CREATE TABLE `t_datetime` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_date` date default NULL,
|
||||||
|
`t_datetime` datetime default NULL,
|
||||||
|
`t_timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
||||||
|
`t_time` time default NULL,
|
||||||
|
`t_year` year(4) default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_string_1;
|
||||||
|
Table Create Table
|
||||||
|
t_string_1 CREATE TABLE `t_string_1` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_char` char(255) default NULL,
|
||||||
|
`t_varchar` varchar(655) default NULL,
|
||||||
|
`t_binary` binary(255) default NULL,
|
||||||
|
`t_varbinary` varbinary(6553) default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_string_2;
|
||||||
|
Table Create Table
|
||||||
|
t_string_2 CREATE TABLE `t_string_2` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_tinyblob` tinyblob,
|
||||||
|
`t_tinytext` tinytext,
|
||||||
|
`t_blob` blob,
|
||||||
|
`t_text` text,
|
||||||
|
`t_mediumblob` mediumblob,
|
||||||
|
`t_mediumtext` mediumtext,
|
||||||
|
`t_longblob` longblob,
|
||||||
|
`t_longtext` longtext,
|
||||||
|
`t_enum` enum('001001','001004','001010','001018','001019','001020','001021','001027','001028','001029','001030','001031','001100','002003','002004','002005','002007') NOT NULL default '001001',
|
||||||
|
`t_set` set('a','B') default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SHOW CREATE TABLE t_gis;
|
||||||
|
Table Create Table
|
||||||
|
t_gis CREATE TABLE `t_gis` (
|
||||||
|
`t_pk` int(11) NOT NULL,
|
||||||
|
`t_point` point default NULL,
|
||||||
|
`t_linestring` linestring default NULL,
|
||||||
|
`t_polygon` polygon default NULL,
|
||||||
|
`t_multipoint` multipoint default NULL,
|
||||||
|
`t_multilinestring` multilinestring default NULL,
|
||||||
|
`t_multipolygon` multipolygon default NULL,
|
||||||
|
`t_geometrycollection` geometrycollection default NULL,
|
||||||
|
`t_geometry` geometry default NULL,
|
||||||
|
PRIMARY KEY (`t_pk`)
|
||||||
|
) ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||||
|
SELECT * FROM t_datetime;
|
||||||
|
t_pk t_date t_datetime t_timestamp t_time t_year
|
||||||
|
1 1998-01-01 2006-08-10 10:11:12 2002-10-29 16:51:06 19:38:34 2155
|
||||||
|
SELECT t_pk,hex(t_bit),t_tinyint,t_bool,t_smallint,t_mediumint,t_int,t_bigint,t_float,t_double,t_decimal FROM t_num;
|
||||||
|
t_pk hex(t_bit) t_tinyint t_bool t_smallint t_mediumint t_int t_bigint t_float t_double t_decimal
|
||||||
|
1 AAAAAAAAAAAAAAAA 125 1 32765 8388606 2147483647 9223372036854775807 1e+20 1e+150 331.0000000000000000
|
||||||
|
SELECT t_pk,t_char,t_varchar,hex(t_binary),hex(t_varbinary) FROM t_string_1;
|
||||||
|
t_pk t_char t_varchar hex(t_binary) hex(t_varbinary)
|
||||||
|
1 abcdefghijklmn abcdefghijklmnabcdefghijklmnabcdefghijklmnabcdefghijklmn 612020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4100
|
||||||
|
SELECT * FROM t_string_2;
|
||||||
|
t_pk t_tinyblob t_tinytext t_blob t_text t_mediumblob t_mediumtext t_longblob t_longtext t_enum t_set
|
||||||
|
1 abcdefghijklmnabcdefghijklmn abcdefghijklmnabcdefghijklmn a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 a123456789b123456789c123456789d123456789e123456789f123456789g123456789 001001 a
|
||||||
|
SELECT AsText(t_point), AsText(t_linestring),AsText(t_polygon) FROM t_gis ORDER by t_pk;
|
||||||
|
AsText(t_point) AsText(t_linestring) AsText(t_polygon)
|
||||||
|
POINT(10 10) LINESTRING(10 10,20 10,20 20,10 20,10 10) POLYGON((0 0,50 0,50 50,0 50,0 0),(10 10,20 10,20 20,10 20,10 10))
|
||||||
|
POINT(10 20) LINESTRING(10 10,40 10) POLYGON((0 0,30 0,30 30,0 0))
|
||||||
|
SELECT AsText(t_multipoint), AsText(t_multilinestring),AsText(t_multipolygon) FROM t_gis ORDER by t_pk;
|
||||||
|
AsText(t_multipoint) AsText(t_multilinestring) AsText(t_multipolygon)
|
||||||
|
MULTIPOINT(1 1,11 11,11 21,21 21) MULTILINESTRING((10 48,10 21,10 0)) MULTIPOLYGON(((28 26,28 0,84 0,84 42,28 26),(52 18,66 23,73 9,48 6,52 18)),((59 18,67 18,67 13,59 13,59 18)))
|
||||||
|
MULTIPOINT(3 6,4 10) MULTILINESTRING((1 2,3 5),(2 5,5 8,21 7)) MULTIPOLYGON(((0 3,3 3,3 0,0 3)))
|
||||||
|
SELECT AsText(t_geometrycollection), AsText(t_geometry) FROM t_gis ORDER by t_pk;
|
||||||
|
AsText(t_geometrycollection) AsText(t_geometry)
|
||||||
|
GEOMETRYCOLLECTION(POINT(0 0),LINESTRING(0 0,10 10)) MULTIPOLYGON(((28 26,28 0,84 0,84 42,28 26),(52 18,66 23,73 9,48 6,52 18)),((59 18,67 18,67 13,59 13,59 18)))
|
||||||
|
GEOMETRYCOLLECTION(POINT(44 6),LINESTRING(3 6,7 9)) GEOMETRYCOLLECTION(POINT(44 6),LINESTRING(3 6,7 9))
|
||||||
|
DROP TABLE t_num,t_datetime,t_string_1,t_string_2,t_gis;
|
747
mysql-test/r/parser_precedence.result
Normal file
747
mysql-test/r/parser_precedence.result
Normal file
@ -0,0 +1,747 @@
|
|||||||
|
drop table if exists t1_30237_bool;
|
||||||
|
create table t1_30237_bool(A boolean, B boolean, C boolean);
|
||||||
|
insert into t1_30237_bool values
|
||||||
|
(FALSE, FALSE, FALSE),
|
||||||
|
(FALSE, FALSE, NULL),
|
||||||
|
(FALSE, FALSE, TRUE),
|
||||||
|
(FALSE, NULL, FALSE),
|
||||||
|
(FALSE, NULL, NULL),
|
||||||
|
(FALSE, NULL, TRUE),
|
||||||
|
(FALSE, TRUE, FALSE),
|
||||||
|
(FALSE, TRUE, NULL),
|
||||||
|
(FALSE, TRUE, TRUE),
|
||||||
|
(NULL, FALSE, FALSE),
|
||||||
|
(NULL, FALSE, NULL),
|
||||||
|
(NULL, FALSE, TRUE),
|
||||||
|
(NULL, NULL, FALSE),
|
||||||
|
(NULL, NULL, NULL),
|
||||||
|
(NULL, NULL, TRUE),
|
||||||
|
(NULL, TRUE, FALSE),
|
||||||
|
(NULL, TRUE, NULL),
|
||||||
|
(NULL, TRUE, TRUE),
|
||||||
|
(TRUE, FALSE, FALSE),
|
||||||
|
(TRUE, FALSE, NULL),
|
||||||
|
(TRUE, FALSE, TRUE),
|
||||||
|
(TRUE, NULL, FALSE),
|
||||||
|
(TRUE, NULL, NULL),
|
||||||
|
(TRUE, NULL, TRUE),
|
||||||
|
(TRUE, TRUE, FALSE),
|
||||||
|
(TRUE, TRUE, NULL),
|
||||||
|
(TRUE, TRUE, TRUE) ;
|
||||||
|
Testing OR, XOR, AND
|
||||||
|
select A, B, A OR B, A XOR B, A AND B
|
||||||
|
from t1_30237_bool where C is null order by A, B;
|
||||||
|
A B A OR B A XOR B A AND B
|
||||||
|
NULL NULL NULL NULL NULL
|
||||||
|
NULL 0 NULL NULL 0
|
||||||
|
NULL 1 1 NULL NULL
|
||||||
|
0 NULL NULL NULL 0
|
||||||
|
0 0 0 0 0
|
||||||
|
0 1 1 1 0
|
||||||
|
1 NULL 1 NULL NULL
|
||||||
|
1 0 1 1 0
|
||||||
|
1 1 1 0 1
|
||||||
|
Testing that OR is associative
|
||||||
|
select A, B, C, (A OR B) OR C, A OR (B OR C), A OR B OR C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A OR B) OR C A OR (B OR C) A OR B OR C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 NULL NULL NULL
|
||||||
|
NULL NULL 1 1 1 1
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 NULL NULL NULL
|
||||||
|
NULL 0 1 1 1 1
|
||||||
|
NULL 1 NULL 1 1 1
|
||||||
|
NULL 1 0 1 1 1
|
||||||
|
NULL 1 1 1 1 1
|
||||||
|
0 NULL NULL NULL NULL NULL
|
||||||
|
0 NULL 0 NULL NULL NULL
|
||||||
|
0 NULL 1 1 1 1
|
||||||
|
0 0 NULL NULL NULL NULL
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 1 1 1
|
||||||
|
0 1 NULL 1 1 1
|
||||||
|
0 1 0 1 1 1
|
||||||
|
0 1 1 1 1 1
|
||||||
|
1 NULL NULL 1 1 1
|
||||||
|
1 NULL 0 1 1 1
|
||||||
|
1 NULL 1 1 1 1
|
||||||
|
1 0 NULL 1 1 1
|
||||||
|
1 0 0 1 1 1
|
||||||
|
1 0 1 1 1 1
|
||||||
|
1 1 NULL 1 1 1
|
||||||
|
1 1 0 1 1 1
|
||||||
|
1 1 1 1 1 1
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where ((A OR B) OR C) != (A OR (B OR C));
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
Testing that XOR is associative
|
||||||
|
select A, B, C, (A XOR B) XOR C, A XOR (B XOR C), A XOR B XOR C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A XOR B) XOR C A XOR (B XOR C) A XOR B XOR C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 NULL NULL NULL
|
||||||
|
NULL NULL 1 NULL NULL NULL
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 NULL NULL NULL
|
||||||
|
NULL 0 1 NULL NULL NULL
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 NULL NULL NULL
|
||||||
|
NULL 1 1 NULL NULL NULL
|
||||||
|
0 NULL NULL NULL NULL NULL
|
||||||
|
0 NULL 0 NULL NULL NULL
|
||||||
|
0 NULL 1 NULL NULL NULL
|
||||||
|
0 0 NULL NULL NULL NULL
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 1 1 1
|
||||||
|
0 1 NULL NULL NULL NULL
|
||||||
|
0 1 0 1 1 1
|
||||||
|
0 1 1 0 0 0
|
||||||
|
1 NULL NULL NULL NULL NULL
|
||||||
|
1 NULL 0 NULL NULL NULL
|
||||||
|
1 NULL 1 NULL NULL NULL
|
||||||
|
1 0 NULL NULL NULL NULL
|
||||||
|
1 0 0 1 1 1
|
||||||
|
1 0 1 0 0 0
|
||||||
|
1 1 NULL NULL NULL NULL
|
||||||
|
1 1 0 0 0 0
|
||||||
|
1 1 1 1 1 1
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where ((A XOR B) XOR C) != (A XOR (B XOR C));
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
Testing that AND is associative
|
||||||
|
select A, B, C, (A AND B) AND C, A AND (B AND C), A AND B AND C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A AND B) AND C A AND (B AND C) A AND B AND C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 0 0 0
|
||||||
|
NULL NULL 1 NULL NULL NULL
|
||||||
|
NULL 0 NULL 0 0 0
|
||||||
|
NULL 0 0 0 0 0
|
||||||
|
NULL 0 1 0 0 0
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 0 0 0
|
||||||
|
NULL 1 1 NULL NULL NULL
|
||||||
|
0 NULL NULL 0 0 0
|
||||||
|
0 NULL 0 0 0 0
|
||||||
|
0 NULL 1 0 0 0
|
||||||
|
0 0 NULL 0 0 0
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 0 0 0
|
||||||
|
0 1 NULL 0 0 0
|
||||||
|
0 1 0 0 0 0
|
||||||
|
0 1 1 0 0 0
|
||||||
|
1 NULL NULL NULL NULL NULL
|
||||||
|
1 NULL 0 0 0 0
|
||||||
|
1 NULL 1 NULL NULL NULL
|
||||||
|
1 0 NULL 0 0 0
|
||||||
|
1 0 0 0 0 0
|
||||||
|
1 0 1 0 0 0
|
||||||
|
1 1 NULL NULL NULL NULL
|
||||||
|
1 1 0 0 0 0
|
||||||
|
1 1 1 1 1 1
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where ((A AND B) AND C) != (A AND (B AND C));
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
Testing that AND has precedence over OR
|
||||||
|
select A, B, C, (A OR B) AND C, A OR (B AND C), A OR B AND C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A OR B) AND C A OR (B AND C) A OR B AND C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 0 NULL NULL
|
||||||
|
NULL NULL 1 NULL NULL NULL
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 0 NULL NULL
|
||||||
|
NULL 0 1 NULL NULL NULL
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 0 NULL NULL
|
||||||
|
NULL 1 1 1 1 1
|
||||||
|
0 NULL NULL NULL NULL NULL
|
||||||
|
0 NULL 0 0 0 0
|
||||||
|
0 NULL 1 NULL NULL NULL
|
||||||
|
0 0 NULL 0 0 0
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 0 0 0
|
||||||
|
0 1 NULL NULL NULL NULL
|
||||||
|
0 1 0 0 0 0
|
||||||
|
0 1 1 1 1 1
|
||||||
|
1 NULL NULL NULL 1 1
|
||||||
|
1 NULL 0 0 1 1
|
||||||
|
1 NULL 1 1 1 1
|
||||||
|
1 0 NULL NULL 1 1
|
||||||
|
1 0 0 0 1 1
|
||||||
|
1 0 1 1 1 1
|
||||||
|
1 1 NULL NULL 1 1
|
||||||
|
1 1 0 0 1 1
|
||||||
|
1 1 1 1 1 1
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where (A OR (B AND C)) != (A OR B AND C);
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
select A, B, C, (A AND B) OR C, A AND (B OR C), A AND B OR C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A AND B) OR C A AND (B OR C) A AND B OR C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 NULL NULL NULL
|
||||||
|
NULL NULL 1 1 NULL 1
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 0 0 0
|
||||||
|
NULL 0 1 1 NULL 1
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 NULL NULL NULL
|
||||||
|
NULL 1 1 1 NULL 1
|
||||||
|
0 NULL NULL NULL 0 NULL
|
||||||
|
0 NULL 0 0 0 0
|
||||||
|
0 NULL 1 1 0 1
|
||||||
|
0 0 NULL NULL 0 NULL
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 1 0 1
|
||||||
|
0 1 NULL NULL 0 NULL
|
||||||
|
0 1 0 0 0 0
|
||||||
|
0 1 1 1 0 1
|
||||||
|
1 NULL NULL NULL NULL NULL
|
||||||
|
1 NULL 0 NULL NULL NULL
|
||||||
|
1 NULL 1 1 1 1
|
||||||
|
1 0 NULL NULL NULL NULL
|
||||||
|
1 0 0 0 0 0
|
||||||
|
1 0 1 1 1 1
|
||||||
|
1 1 NULL 1 1 1
|
||||||
|
1 1 0 1 1 1
|
||||||
|
1 1 1 1 1 1
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where ((A AND B) OR C) != (A AND B OR C);
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
Testing that AND has precedence over XOR
|
||||||
|
select A, B, C, (A XOR B) AND C, A XOR (B AND C), A XOR B AND C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A XOR B) AND C A XOR (B AND C) A XOR B AND C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 0 NULL NULL
|
||||||
|
NULL NULL 1 NULL NULL NULL
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 0 NULL NULL
|
||||||
|
NULL 0 1 NULL NULL NULL
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 0 NULL NULL
|
||||||
|
NULL 1 1 NULL NULL NULL
|
||||||
|
0 NULL NULL NULL NULL NULL
|
||||||
|
0 NULL 0 0 0 0
|
||||||
|
0 NULL 1 NULL NULL NULL
|
||||||
|
0 0 NULL 0 0 0
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 0 0 0
|
||||||
|
0 1 NULL NULL NULL NULL
|
||||||
|
0 1 0 0 0 0
|
||||||
|
0 1 1 1 1 1
|
||||||
|
1 NULL NULL NULL NULL NULL
|
||||||
|
1 NULL 0 0 1 1
|
||||||
|
1 NULL 1 NULL NULL NULL
|
||||||
|
1 0 NULL NULL 1 1
|
||||||
|
1 0 0 0 1 1
|
||||||
|
1 0 1 1 1 1
|
||||||
|
1 1 NULL 0 NULL NULL
|
||||||
|
1 1 0 0 1 1
|
||||||
|
1 1 1 0 0 0
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where (A XOR (B AND C)) != (A XOR B AND C);
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
select A, B, C, (A AND B) XOR C, A AND (B XOR C), A AND B XOR C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A AND B) XOR C A AND (B XOR C) A AND B XOR C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 NULL NULL NULL
|
||||||
|
NULL NULL 1 NULL NULL NULL
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 0 0 0
|
||||||
|
NULL 0 1 1 NULL 1
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 NULL NULL NULL
|
||||||
|
NULL 1 1 NULL 0 NULL
|
||||||
|
0 NULL NULL NULL 0 NULL
|
||||||
|
0 NULL 0 0 0 0
|
||||||
|
0 NULL 1 1 0 1
|
||||||
|
0 0 NULL NULL 0 NULL
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 1 0 1
|
||||||
|
0 1 NULL NULL 0 NULL
|
||||||
|
0 1 0 0 0 0
|
||||||
|
0 1 1 1 0 1
|
||||||
|
1 NULL NULL NULL NULL NULL
|
||||||
|
1 NULL 0 NULL NULL NULL
|
||||||
|
1 NULL 1 NULL NULL NULL
|
||||||
|
1 0 NULL NULL NULL NULL
|
||||||
|
1 0 0 0 0 0
|
||||||
|
1 0 1 1 1 1
|
||||||
|
1 1 NULL NULL NULL NULL
|
||||||
|
1 1 0 1 1 1
|
||||||
|
1 1 1 0 0 0
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where ((A AND B) XOR C) != (A AND B XOR C);
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
Testing that XOR has precedence over OR
|
||||||
|
select A, B, C, (A XOR B) OR C, A XOR (B OR C), A XOR B OR C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A XOR B) OR C A XOR (B OR C) A XOR B OR C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 NULL NULL NULL
|
||||||
|
NULL NULL 1 1 NULL 1
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 NULL NULL NULL
|
||||||
|
NULL 0 1 1 NULL 1
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 NULL NULL NULL
|
||||||
|
NULL 1 1 1 NULL 1
|
||||||
|
0 NULL NULL NULL NULL NULL
|
||||||
|
0 NULL 0 NULL NULL NULL
|
||||||
|
0 NULL 1 1 1 1
|
||||||
|
0 0 NULL NULL NULL NULL
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 1 1 1
|
||||||
|
0 1 NULL 1 1 1
|
||||||
|
0 1 0 1 1 1
|
||||||
|
0 1 1 1 1 1
|
||||||
|
1 NULL NULL NULL NULL NULL
|
||||||
|
1 NULL 0 NULL NULL NULL
|
||||||
|
1 NULL 1 1 0 1
|
||||||
|
1 0 NULL 1 NULL 1
|
||||||
|
1 0 0 1 1 1
|
||||||
|
1 0 1 1 0 1
|
||||||
|
1 1 NULL NULL 0 NULL
|
||||||
|
1 1 0 0 0 0
|
||||||
|
1 1 1 1 0 1
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where ((A XOR B) OR C) != (A XOR B OR C);
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
select A, B, C, (A OR B) XOR C, A OR (B XOR C), A OR B XOR C
|
||||||
|
from t1_30237_bool order by A, B, C;
|
||||||
|
A B C (A OR B) XOR C A OR (B XOR C) A OR B XOR C
|
||||||
|
NULL NULL NULL NULL NULL NULL
|
||||||
|
NULL NULL 0 NULL NULL NULL
|
||||||
|
NULL NULL 1 NULL NULL NULL
|
||||||
|
NULL 0 NULL NULL NULL NULL
|
||||||
|
NULL 0 0 NULL NULL NULL
|
||||||
|
NULL 0 1 NULL 1 1
|
||||||
|
NULL 1 NULL NULL NULL NULL
|
||||||
|
NULL 1 0 1 1 1
|
||||||
|
NULL 1 1 0 NULL NULL
|
||||||
|
0 NULL NULL NULL NULL NULL
|
||||||
|
0 NULL 0 NULL NULL NULL
|
||||||
|
0 NULL 1 NULL NULL NULL
|
||||||
|
0 0 NULL NULL NULL NULL
|
||||||
|
0 0 0 0 0 0
|
||||||
|
0 0 1 1 1 1
|
||||||
|
0 1 NULL NULL NULL NULL
|
||||||
|
0 1 0 1 1 1
|
||||||
|
0 1 1 0 0 0
|
||||||
|
1 NULL NULL NULL 1 1
|
||||||
|
1 NULL 0 1 1 1
|
||||||
|
1 NULL 1 0 1 1
|
||||||
|
1 0 NULL NULL 1 1
|
||||||
|
1 0 0 1 1 1
|
||||||
|
1 0 1 0 1 1
|
||||||
|
1 1 NULL NULL 1 1
|
||||||
|
1 1 0 1 1 1
|
||||||
|
1 1 1 0 1 1
|
||||||
|
select count(*) from t1_30237_bool
|
||||||
|
where (A OR (B XOR C)) != (A OR B XOR C);
|
||||||
|
count(*)
|
||||||
|
0
|
||||||
|
drop table t1_30237_bool;
|
||||||
|
Testing that NOT has precedence over OR
|
||||||
|
select (NOT FALSE) OR TRUE, NOT (FALSE OR TRUE), NOT FALSE OR TRUE;
|
||||||
|
(NOT FALSE) OR TRUE NOT (FALSE OR TRUE) NOT FALSE OR TRUE
|
||||||
|
1 0 1
|
||||||
|
Testing that NOT has precedence over XOR
|
||||||
|
select (NOT FALSE) XOR FALSE, NOT (FALSE XOR FALSE), NOT FALSE XOR FALSE;
|
||||||
|
(NOT FALSE) XOR FALSE NOT (FALSE XOR FALSE) NOT FALSE XOR FALSE
|
||||||
|
1 1 1
|
||||||
|
Testing that NOT has precedence over AND
|
||||||
|
select (NOT FALSE) AND FALSE, NOT (FALSE AND FALSE), NOT FALSE AND FALSE;
|
||||||
|
(NOT FALSE) AND FALSE NOT (FALSE AND FALSE) NOT FALSE AND FALSE
|
||||||
|
0 1 0
|
||||||
|
Testing that NOT is associative
|
||||||
|
select NOT NOT TRUE, NOT NOT NOT FALSE;
|
||||||
|
NOT NOT TRUE NOT NOT NOT FALSE
|
||||||
|
1 1
|
||||||
|
Testing that IS has precedence over NOT
|
||||||
|
select (NOT NULL) IS TRUE, NOT (NULL IS TRUE), NOT NULL IS TRUE;
|
||||||
|
(NOT NULL) IS TRUE NOT (NULL IS TRUE) NOT NULL IS TRUE
|
||||||
|
0 1 1
|
||||||
|
select (NOT NULL) IS NOT TRUE, NOT (NULL IS NOT TRUE), NOT NULL IS NOT TRUE;
|
||||||
|
(NOT NULL) IS NOT TRUE NOT (NULL IS NOT TRUE) NOT NULL IS NOT TRUE
|
||||||
|
1 0 0
|
||||||
|
select (NOT NULL) IS FALSE, NOT (NULL IS FALSE), NOT NULL IS FALSE;
|
||||||
|
(NOT NULL) IS FALSE NOT (NULL IS FALSE) NOT NULL IS FALSE
|
||||||
|
0 1 1
|
||||||
|
select (NOT NULL) IS NOT FALSE, NOT (NULL IS NOT FALSE), NOT NULL IS NOT FALSE;
|
||||||
|
(NOT NULL) IS NOT FALSE NOT (NULL IS NOT FALSE) NOT NULL IS NOT FALSE
|
||||||
|
1 0 0
|
||||||
|
select (NOT TRUE) IS UNKNOWN, NOT (TRUE IS UNKNOWN), NOT TRUE IS UNKNOWN;
|
||||||
|
(NOT TRUE) IS UNKNOWN NOT (TRUE IS UNKNOWN) NOT TRUE IS UNKNOWN
|
||||||
|
0 1 1
|
||||||
|
select (NOT TRUE) IS NOT UNKNOWN, NOT (TRUE IS NOT UNKNOWN), NOT TRUE IS NOT UNKNOWN;
|
||||||
|
(NOT TRUE) IS NOT UNKNOWN NOT (TRUE IS NOT UNKNOWN) NOT TRUE IS NOT UNKNOWN
|
||||||
|
1 0 0
|
||||||
|
select (NOT TRUE) IS NULL, NOT (TRUE IS NULL), NOT TRUE IS NULL;
|
||||||
|
(NOT TRUE) IS NULL NOT (TRUE IS NULL) NOT TRUE IS NULL
|
||||||
|
0 1 1
|
||||||
|
select (NOT TRUE) IS NOT NULL, NOT (TRUE IS NOT NULL), NOT TRUE IS NOT NULL;
|
||||||
|
(NOT TRUE) IS NOT NULL NOT (TRUE IS NOT NULL) NOT TRUE IS NOT NULL
|
||||||
|
1 0 0
|
||||||
|
Testing that IS [NOT] TRUE/FALSE/UNKNOWN predicates are not associative
|
||||||
|
select TRUE IS TRUE IS TRUE IS TRUE;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS TRUE IS TRUE' at line 1
|
||||||
|
select FALSE IS NOT TRUE IS NOT TRUE IS NOT TRUE;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS NOT TRUE IS NOT TRUE' at line 1
|
||||||
|
select NULL IS FALSE IS FALSE IS FALSE;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS FALSE IS FALSE' at line 1
|
||||||
|
select TRUE IS NOT FALSE IS NOT FALSE IS NOT FALSE;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS NOT FALSE IS NOT FALSE' at line 1
|
||||||
|
select FALSE IS UNKNOWN IS UNKNOWN IS UNKNOWN;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS UNKNOWN IS UNKNOWN' at line 1
|
||||||
|
select TRUE IS NOT UNKNOWN IS NOT UNKNOWN IS NOT UNKNOWN;
|
||||||
|
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'IS NOT UNKNOWN IS NOT UNKNOWN' at line 1
|
||||||
|
Testing that IS [NOT] NULL predicates are associative
|
||||||
|
select FALSE IS NULL IS NULL IS NULL;
|
||||||
|
FALSE IS NULL IS NULL IS NULL
|
||||||
|
0
|
||||||
|
select TRUE IS NOT NULL IS NOT NULL IS NOT NULL;
|
||||||
|
TRUE IS NOT NULL IS NOT NULL IS NOT NULL
|
||||||
|
1
|
||||||
|
Testing that comparison operators are left associative
|
||||||
|
select 1 <=> 2 <=> 2, (1 <=> 2) <=> 2, 1 <=> (2 <=> 2);
|
||||||
|
1 <=> 2 <=> 2 (1 <=> 2) <=> 2 1 <=> (2 <=> 2)
|
||||||
|
0 0 1
|
||||||
|
select 1 = 2 = 2, (1 = 2) = 2, 1 = (2 = 2);
|
||||||
|
1 = 2 = 2 (1 = 2) = 2 1 = (2 = 2)
|
||||||
|
0 0 1
|
||||||
|
select 1 != 2 != 3, (1 != 2) != 3, 1 != (2 != 3);
|
||||||
|
1 != 2 != 3 (1 != 2) != 3 1 != (2 != 3)
|
||||||
|
1 1 0
|
||||||
|
select 1 <> 2 <> 3, (1 <> 2) <> 3, 1 <> (2 <> 3);
|
||||||
|
1 <> 2 <> 3 (1 <> 2) <> 3 1 <> (2 <> 3)
|
||||||
|
1 1 0
|
||||||
|
select 1 < 2 < 3, (1 < 2) < 3, 1 < (2 < 3);
|
||||||
|
1 < 2 < 3 (1 < 2) < 3 1 < (2 < 3)
|
||||||
|
1 1 0
|
||||||
|
select 3 <= 2 <= 1, (3 <= 2) <= 1, 3 <= (2 <= 1);
|
||||||
|
3 <= 2 <= 1 (3 <= 2) <= 1 3 <= (2 <= 1)
|
||||||
|
1 1 0
|
||||||
|
select 1 > 2 > 3, (1 > 2) > 3, 1 > (2 > 3);
|
||||||
|
1 > 2 > 3 (1 > 2) > 3 1 > (2 > 3)
|
||||||
|
0 0 1
|
||||||
|
select 1 >= 2 >= 3, (1 >= 2) >= 3, 1 >= (2 >= 3);
|
||||||
|
1 >= 2 >= 3 (1 >= 2) >= 3 1 >= (2 >= 3)
|
||||||
|
0 0 1
|
||||||
|
Testing that | is associative
|
||||||
|
select 0xF0 | 0x0F | 0x55, (0xF0 | 0x0F) | 0x55, 0xF0 | (0x0F | 0x55);
|
||||||
|
0xF0 | 0x0F | 0x55 (0xF0 | 0x0F) | 0x55 0xF0 | (0x0F | 0x55)
|
||||||
|
255 255 255
|
||||||
|
Testing that & is associative
|
||||||
|
select 0xF5 & 0x5F & 0x55, (0xF5 & 0x5F) & 0x55, 0xF5 & (0x5F & 0x55);
|
||||||
|
0xF5 & 0x5F & 0x55 (0xF5 & 0x5F) & 0x55 0xF5 & (0x5F & 0x55)
|
||||||
|
85 85 85
|
||||||
|
Testing that << is left associative
|
||||||
|
select 4 << 3 << 2, (4 << 3) << 2, 4 << (3 << 2);
|
||||||
|
4 << 3 << 2 (4 << 3) << 2 4 << (3 << 2)
|
||||||
|
128 128 16384
|
||||||
|
Testing that >> is left associative
|
||||||
|
select 256 >> 3 >> 2, (256 >> 3) >> 2, 256 >> (3 >> 2);
|
||||||
|
256 >> 3 >> 2 (256 >> 3) >> 2 256 >> (3 >> 2)
|
||||||
|
8 8 256
|
||||||
|
Testing that & has precedence over |
|
||||||
|
select 0xF0 & 0x0F | 0x55, (0xF0 & 0x0F) | 0x55, 0xF0 & (0x0F | 0x55);
|
||||||
|
0xF0 & 0x0F | 0x55 (0xF0 & 0x0F) | 0x55 0xF0 & (0x0F | 0x55)
|
||||||
|
85 85 80
|
||||||
|
select 0x55 | 0xF0 & 0x0F, (0x55 | 0xF0) & 0x0F, 0x55 | (0xF0 & 0x0F);
|
||||||
|
0x55 | 0xF0 & 0x0F (0x55 | 0xF0) & 0x0F 0x55 | (0xF0 & 0x0F)
|
||||||
|
85 5 85
|
||||||
|
Testing that << has precedence over |
|
||||||
|
select 0x0F << 4 | 0x0F, (0x0F << 4) | 0x0F, 0x0F << (4 | 0x0F);
|
||||||
|
0x0F << 4 | 0x0F (0x0F << 4) | 0x0F 0x0F << (4 | 0x0F)
|
||||||
|
255 255 491520
|
||||||
|
select 0x0F | 0x0F << 4, (0x0F | 0x0F) << 4, 0x0F | (0x0F << 4);
|
||||||
|
0x0F | 0x0F << 4 (0x0F | 0x0F) << 4 0x0F | (0x0F << 4)
|
||||||
|
255 240 255
|
||||||
|
Testing that >> has precedence over |
|
||||||
|
select 0xF0 >> 4 | 0xFF, (0xF0 >> 4) | 0xFF, 0xF0 >> (4 | 0xFF);
|
||||||
|
0xF0 >> 4 | 0xFF (0xF0 >> 4) | 0xFF 0xF0 >> (4 | 0xFF)
|
||||||
|
255 255 0
|
||||||
|
select 0xFF | 0xF0 >> 4, (0xFF | 0xF0) >> 4, 0xFF | (0xF0 >> 4);
|
||||||
|
0xFF | 0xF0 >> 4 (0xFF | 0xF0) >> 4 0xFF | (0xF0 >> 4)
|
||||||
|
255 15 255
|
||||||
|
Testing that << has precedence over &
|
||||||
|
select 0x0F << 4 & 0xF0, (0x0F << 4) & 0xF0, 0x0F << (4 & 0xF0);
|
||||||
|
0x0F << 4 & 0xF0 (0x0F << 4) & 0xF0 0x0F << (4 & 0xF0)
|
||||||
|
240 240 15
|
||||||
|
select 0xF0 & 0x0F << 4, (0xF0 & 0x0F) << 4, 0xF0 & (0x0F << 4);
|
||||||
|
0xF0 & 0x0F << 4 (0xF0 & 0x0F) << 4 0xF0 & (0x0F << 4)
|
||||||
|
240 0 240
|
||||||
|
Testing that >> has precedence over &
|
||||||
|
select 0xF0 >> 4 & 0x55, (0xF0 >> 4) & 0x55, 0xF0 >> (4 & 0x55);
|
||||||
|
0xF0 >> 4 & 0x55 (0xF0 >> 4) & 0x55 0xF0 >> (4 & 0x55)
|
||||||
|
5 5 15
|
||||||
|
select 0x0F & 0xF0 >> 4, (0x0F & 0xF0) >> 4, 0x0F & (0xF0 >> 4);
|
||||||
|
0x0F & 0xF0 >> 4 (0x0F & 0xF0) >> 4 0x0F & (0xF0 >> 4)
|
||||||
|
15 0 15
|
||||||
|
Testing that >> and << have the same precedence
|
||||||
|
select 0xFF >> 4 << 2, (0xFF >> 4) << 2, 0xFF >> (4 << 2);
|
||||||
|
0xFF >> 4 << 2 (0xFF >> 4) << 2 0xFF >> (4 << 2)
|
||||||
|
60 60 0
|
||||||
|
select 0x0F << 4 >> 2, (0x0F << 4) >> 2, 0x0F << (4 >> 2);
|
||||||
|
0x0F << 4 >> 2 (0x0F << 4) >> 2 0x0F << (4 >> 2)
|
||||||
|
60 60 30
|
||||||
|
Testing that binary + is associative
|
||||||
|
select 1 + 2 + 3, (1 + 2) + 3, 1 + (2 + 3);
|
||||||
|
1 + 2 + 3 (1 + 2) + 3 1 + (2 + 3)
|
||||||
|
6 6 6
|
||||||
|
Testing that binary - is left associative
|
||||||
|
select 1 - 2 - 3, (1 - 2) - 3, 1 - (2 - 3);
|
||||||
|
1 - 2 - 3 (1 - 2) - 3 1 - (2 - 3)
|
||||||
|
-4 -4 2
|
||||||
|
Testing that binary + and binary - have the same precedence
|
||||||
|
select 1 + 2 - 3, (1 + 2) - 3, 1 + (2 - 3);
|
||||||
|
1 + 2 - 3 (1 + 2) - 3 1 + (2 - 3)
|
||||||
|
0 0 0
|
||||||
|
select 1 - 2 + 3, (1 - 2) + 3, 1 - (2 + 3);
|
||||||
|
1 - 2 + 3 (1 - 2) + 3 1 - (2 + 3)
|
||||||
|
2 2 -4
|
||||||
|
Testing that binary + has precedence over |
|
||||||
|
select 0xF0 + 0x0F | 0x55, (0xF0 + 0x0F) | 0x55, 0xF0 + (0x0F | 0x55);
|
||||||
|
0xF0 + 0x0F | 0x55 (0xF0 + 0x0F) | 0x55 0xF0 + (0x0F | 0x55)
|
||||||
|
255 255 335
|
||||||
|
select 0x55 | 0xF0 + 0x0F, (0x55 | 0xF0) + 0x0F, 0x55 | (0xF0 + 0x0F);
|
||||||
|
0x55 | 0xF0 + 0x0F (0x55 | 0xF0) + 0x0F 0x55 | (0xF0 + 0x0F)
|
||||||
|
255 260 255
|
||||||
|
Testing that binary + has precedence over &
|
||||||
|
select 0xF0 + 0x0F & 0x55, (0xF0 + 0x0F) & 0x55, 0xF0 + (0x0F & 0x55);
|
||||||
|
0xF0 + 0x0F & 0x55 (0xF0 + 0x0F) & 0x55 0xF0 + (0x0F & 0x55)
|
||||||
|
85 85 245
|
||||||
|
select 0x55 & 0xF0 + 0x0F, (0x55 & 0xF0) + 0x0F, 0x55 & (0xF0 + 0x0F);
|
||||||
|
0x55 & 0xF0 + 0x0F (0x55 & 0xF0) + 0x0F 0x55 & (0xF0 + 0x0F)
|
||||||
|
85 95 85
|
||||||
|
Testing that binary + has precedence over <<
|
||||||
|
select 2 + 3 << 4, (2 + 3) << 4, 2 + (3 << 4);
|
||||||
|
2 + 3 << 4 (2 + 3) << 4 2 + (3 << 4)
|
||||||
|
80 80 50
|
||||||
|
select 3 << 4 + 2, (3 << 4) + 2, 3 << (4 + 2);
|
||||||
|
3 << 4 + 2 (3 << 4) + 2 3 << (4 + 2)
|
||||||
|
192 50 192
|
||||||
|
Testing that binary + has precedence over >>
|
||||||
|
select 4 + 3 >> 2, (4 + 3) >> 2, 4 + (3 >> 2);
|
||||||
|
4 + 3 >> 2 (4 + 3) >> 2 4 + (3 >> 2)
|
||||||
|
1 1 4
|
||||||
|
select 3 >> 2 + 1, (3 >> 2) + 1, 3 >> (2 + 1);
|
||||||
|
3 >> 2 + 1 (3 >> 2) + 1 3 >> (2 + 1)
|
||||||
|
0 1 0
|
||||||
|
Testing that binary - has precedence over |
|
||||||
|
select 0xFF - 0x0F | 0x55, (0xFF - 0x0F) | 0x55, 0xFF - (0x0F | 0x55);
|
||||||
|
0xFF - 0x0F | 0x55 (0xFF - 0x0F) | 0x55 0xFF - (0x0F | 0x55)
|
||||||
|
245 245 160
|
||||||
|
select 0x55 | 0xFF - 0xF0, (0x55 | 0xFF) - 0xF0, 0x55 | (0xFF - 0xF0);
|
||||||
|
0x55 | 0xFF - 0xF0 (0x55 | 0xFF) - 0xF0 0x55 | (0xFF - 0xF0)
|
||||||
|
95 15 95
|
||||||
|
Testing that binary - has precedence over &
|
||||||
|
select 0xFF - 0xF0 & 0x55, (0xFF - 0xF0) & 0x55, 0xFF - (0xF0 & 0x55);
|
||||||
|
0xFF - 0xF0 & 0x55 (0xFF - 0xF0) & 0x55 0xFF - (0xF0 & 0x55)
|
||||||
|
5 5 175
|
||||||
|
select 0x55 & 0xFF - 0xF0, (0x55 & 0xFF) - 0xF0, 0x55 & (0xFF - 0xF0);
|
||||||
|
0x55 & 0xFF - 0xF0 (0x55 & 0xFF) - 0xF0 0x55 & (0xFF - 0xF0)
|
||||||
|
5 -155 5
|
||||||
|
Testing that binary - has precedence over <<
|
||||||
|
select 16 - 3 << 2, (16 - 3) << 2, 16 - (3 << 2);
|
||||||
|
16 - 3 << 2 (16 - 3) << 2 16 - (3 << 2)
|
||||||
|
52 52 4
|
||||||
|
select 4 << 3 - 2, (4 << 3) - 2, 4 << (3 - 2);
|
||||||
|
4 << 3 - 2 (4 << 3) - 2 4 << (3 - 2)
|
||||||
|
8 30 8
|
||||||
|
Testing that binary - has precedence over >>
|
||||||
|
select 16 - 3 >> 2, (16 - 3) >> 2, 16 - (3 >> 2);
|
||||||
|
16 - 3 >> 2 (16 - 3) >> 2 16 - (3 >> 2)
|
||||||
|
3 3 16
|
||||||
|
select 16 >> 3 - 2, (16 >> 3) - 2, 16 >> (3 - 2);
|
||||||
|
16 >> 3 - 2 (16 >> 3) - 2 16 >> (3 - 2)
|
||||||
|
8 0 8
|
||||||
|
Testing that * is associative
|
||||||
|
select 2 * 3 * 4, (2 * 3) * 4, 2 * (3 * 4);
|
||||||
|
2 * 3 * 4 (2 * 3) * 4 2 * (3 * 4)
|
||||||
|
24 24 24
|
||||||
|
Testing that * has precedence over |
|
||||||
|
select 2 * 0x40 | 0x0F, (2 * 0x40) | 0x0F, 2 * (0x40 | 0x0F);
|
||||||
|
2 * 0x40 | 0x0F (2 * 0x40) | 0x0F 2 * (0x40 | 0x0F)
|
||||||
|
143 143 158
|
||||||
|
select 0x0F | 2 * 0x40, (0x0F | 2) * 0x40, 0x0F | (2 * 0x40);
|
||||||
|
0x0F | 2 * 0x40 (0x0F | 2) * 0x40 0x0F | (2 * 0x40)
|
||||||
|
143 960 143
|
||||||
|
Testing that * has precedence over &
|
||||||
|
select 2 * 0x40 & 0x55, (2 * 0x40) & 0x55, 2 * (0x40 & 0x55);
|
||||||
|
2 * 0x40 & 0x55 (2 * 0x40) & 0x55 2 * (0x40 & 0x55)
|
||||||
|
0 0 128
|
||||||
|
select 0xF0 & 2 * 0x40, (0xF0 & 2) * 0x40, 0xF0 & (2 * 0x40);
|
||||||
|
0xF0 & 2 * 0x40 (0xF0 & 2) * 0x40 0xF0 & (2 * 0x40)
|
||||||
|
128 0 128
|
||||||
|
Testing that * has precedence over <<
|
||||||
|
select 5 * 3 << 4, (5 * 3) << 4, 5 * (3 << 4);
|
||||||
|
5 * 3 << 4 (5 * 3) << 4 5 * (3 << 4)
|
||||||
|
240 240 240
|
||||||
|
select 2 << 3 * 4, (2 << 3) * 4, 2 << (3 * 4);
|
||||||
|
2 << 3 * 4 (2 << 3) * 4 2 << (3 * 4)
|
||||||
|
8192 64 8192
|
||||||
|
Testing that * has precedence over >>
|
||||||
|
select 3 * 4 >> 2, (3 * 4) >> 2, 3 * (4 >> 2);
|
||||||
|
3 * 4 >> 2 (3 * 4) >> 2 3 * (4 >> 2)
|
||||||
|
3 3 3
|
||||||
|
select 4 >> 2 * 3, (4 >> 2) * 3, 4 >> (2 * 3);
|
||||||
|
4 >> 2 * 3 (4 >> 2) * 3 4 >> (2 * 3)
|
||||||
|
0 3 0
|
||||||
|
Testing that * has precedence over binary +
|
||||||
|
select 2 * 3 + 4, (2 * 3) + 4, 2 * (3 + 4);
|
||||||
|
2 * 3 + 4 (2 * 3) + 4 2 * (3 + 4)
|
||||||
|
10 10 14
|
||||||
|
select 2 + 3 * 4, (2 + 3) * 4, 2 + (3 * 4);
|
||||||
|
2 + 3 * 4 (2 + 3) * 4 2 + (3 * 4)
|
||||||
|
14 20 14
|
||||||
|
Testing that * has precedence over binary -
|
||||||
|
select 4 * 3 - 2, (4 * 3) - 2, 4 * (3 - 2);
|
||||||
|
4 * 3 - 2 (4 * 3) - 2 4 * (3 - 2)
|
||||||
|
10 10 4
|
||||||
|
select 4 - 3 * 2, (4 - 3) * 2, 4 - (3 * 2);
|
||||||
|
4 - 3 * 2 (4 - 3) * 2 4 - (3 * 2)
|
||||||
|
-2 2 -2
|
||||||
|
Testing that / is left associative
|
||||||
|
select 15 / 5 / 3, (15 / 5) / 3, 15 / (5 / 3);
|
||||||
|
15 / 5 / 3 (15 / 5) / 3 15 / (5 / 3)
|
||||||
|
1.00000000 1.00000000 9.0000
|
||||||
|
Testing that / has precedence over |
|
||||||
|
select 105 / 5 | 2, (105 / 5) | 2, 105 / (5 | 2);
|
||||||
|
105 / 5 | 2 (105 / 5) | 2 105 / (5 | 2)
|
||||||
|
23 23 15.0000
|
||||||
|
select 105 | 2 / 5, (105 | 2) / 5, 105 | (2 / 5);
|
||||||
|
105 | 2 / 5 (105 | 2) / 5 105 | (2 / 5)
|
||||||
|
105 21.4000 105
|
||||||
|
Testing that / has precedence over &
|
||||||
|
select 105 / 5 & 0x0F, (105 / 5) & 0x0F, 105 / (5 & 0x0F);
|
||||||
|
105 / 5 & 0x0F (105 / 5) & 0x0F 105 / (5 & 0x0F)
|
||||||
|
5 5 21.0000
|
||||||
|
select 0x0F & 105 / 5, (0x0F & 105) / 5, 0x0F & (105 / 5);
|
||||||
|
0x0F & 105 / 5 (0x0F & 105) / 5 0x0F & (105 / 5)
|
||||||
|
5 1.8000 5
|
||||||
|
Testing that / has precedence over <<
|
||||||
|
select 0x80 / 4 << 2, (0x80 / 4) << 2, 0x80 / (4 << 2);
|
||||||
|
0x80 / 4 << 2 (0x80 / 4) << 2 0x80 / (4 << 2)
|
||||||
|
128 128 8.0000
|
||||||
|
select 0x80 << 4 / 2, (0x80 << 4) / 2, 0x80 << (4 / 2);
|
||||||
|
0x80 << 4 / 2 (0x80 << 4) / 2 0x80 << (4 / 2)
|
||||||
|
512 1024.0000 512
|
||||||
|
Testing that / has precedence over >>
|
||||||
|
select 0x80 / 4 >> 2, (0x80 / 4) >> 2, 0x80 / (4 >> 2);
|
||||||
|
0x80 / 4 >> 2 (0x80 / 4) >> 2 0x80 / (4 >> 2)
|
||||||
|
8 8 128.0000
|
||||||
|
select 0x80 >> 4 / 2, (0x80 >> 4) / 2, 0x80 >> (4 / 2);
|
||||||
|
0x80 >> 4 / 2 (0x80 >> 4) / 2 0x80 >> (4 / 2)
|
||||||
|
32 4.0000 32
|
||||||
|
Testing that / has precedence over binary +
|
||||||
|
select 0x80 / 2 + 2, (0x80 / 2) + 2, 0x80 / (2 + 2);
|
||||||
|
0x80 / 2 + 2 (0x80 / 2) + 2 0x80 / (2 + 2)
|
||||||
|
66.0000 66.0000 32.0000
|
||||||
|
select 0x80 + 2 / 2, (0x80 + 2) / 2, 0x80 + (2 / 2);
|
||||||
|
0x80 + 2 / 2 (0x80 + 2) / 2 0x80 + (2 / 2)
|
||||||
|
129.0000 65.0000 129.0000
|
||||||
|
Testing that / has precedence over binary -
|
||||||
|
select 0x80 / 4 - 2, (0x80 / 4) - 2, 0x80 / (4 - 2);
|
||||||
|
0x80 / 4 - 2 (0x80 / 4) - 2 0x80 / (4 - 2)
|
||||||
|
30.0000 30.0000 64.0000
|
||||||
|
select 0x80 - 4 / 2, (0x80 - 4) / 2, 0x80 - (4 / 2);
|
||||||
|
0x80 - 4 / 2 (0x80 - 4) / 2 0x80 - (4 / 2)
|
||||||
|
126.0000 62.0000 126.0000
|
||||||
|
Testing that ^ is associative
|
||||||
|
select 0xFF ^ 0xF0 ^ 0x0F, (0xFF ^ 0xF0) ^ 0x0F, 0xFF ^ (0xF0 ^ 0x0F);
|
||||||
|
0xFF ^ 0xF0 ^ 0x0F (0xFF ^ 0xF0) ^ 0x0F 0xFF ^ (0xF0 ^ 0x0F)
|
||||||
|
0 0 0
|
||||||
|
select 0xFF ^ 0xF0 ^ 0x55, (0xFF ^ 0xF0) ^ 0x55, 0xFF ^ (0xF0 ^ 0x55);
|
||||||
|
0xFF ^ 0xF0 ^ 0x55 (0xFF ^ 0xF0) ^ 0x55 0xFF ^ (0xF0 ^ 0x55)
|
||||||
|
90 90 90
|
||||||
|
Testing that ^ has precedence over |
|
||||||
|
select 0xFF ^ 0xF0 | 0x0F, (0xFF ^ 0xF0) | 0x0F, 0xFF ^ (0xF0 | 0x0F);
|
||||||
|
0xFF ^ 0xF0 | 0x0F (0xFF ^ 0xF0) | 0x0F 0xFF ^ (0xF0 | 0x0F)
|
||||||
|
15 15 0
|
||||||
|
select 0xF0 | 0xFF ^ 0xF0, (0xF0 | 0xFF) ^ 0xF0, 0xF0 | (0xFF ^ 0xF0);
|
||||||
|
0xF0 | 0xFF ^ 0xF0 (0xF0 | 0xFF) ^ 0xF0 0xF0 | (0xFF ^ 0xF0)
|
||||||
|
255 15 255
|
||||||
|
Testing that ^ has precedence over &
|
||||||
|
select 0xFF ^ 0xF0 & 0x0F, (0xFF ^ 0xF0) & 0x0F, 0xFF ^ (0xF0 & 0x0F);
|
||||||
|
0xFF ^ 0xF0 & 0x0F (0xFF ^ 0xF0) & 0x0F 0xFF ^ (0xF0 & 0x0F)
|
||||||
|
15 15 255
|
||||||
|
select 0x0F & 0xFF ^ 0xF0, (0x0F & 0xFF) ^ 0xF0, 0x0F & (0xFF ^ 0xF0);
|
||||||
|
0x0F & 0xFF ^ 0xF0 (0x0F & 0xFF) ^ 0xF0 0x0F & (0xFF ^ 0xF0)
|
||||||
|
15 255 15
|
||||||
|
Testing that ^ has precedence over <<
|
||||||
|
select 0xFF ^ 0xF0 << 2, (0xFF ^ 0xF0) << 2, 0xFF ^ (0xF0 << 2);
|
||||||
|
0xFF ^ 0xF0 << 2 (0xFF ^ 0xF0) << 2 0xFF ^ (0xF0 << 2)
|
||||||
|
60 60 831
|
||||||
|
select 0x0F << 2 ^ 0xFF, (0x0F << 2) ^ 0xFF, 0x0F << (2 ^ 0xFF);
|
||||||
|
0x0F << 2 ^ 0xFF (0x0F << 2) ^ 0xFF 0x0F << (2 ^ 0xFF)
|
||||||
|
0 195 0
|
||||||
|
Testing that ^ has precedence over >>
|
||||||
|
select 0xFF ^ 0xF0 >> 2, (0xFF ^ 0xF0) >> 2, 0xFF ^ (0xF0 >> 2);
|
||||||
|
0xFF ^ 0xF0 >> 2 (0xFF ^ 0xF0) >> 2 0xFF ^ (0xF0 >> 2)
|
||||||
|
3 3 195
|
||||||
|
select 0xFF >> 2 ^ 0xF0, (0xFF >> 2) ^ 0xF0, 0xFF >> (2 ^ 0xF0);
|
||||||
|
0xFF >> 2 ^ 0xF0 (0xFF >> 2) ^ 0xF0 0xFF >> (2 ^ 0xF0)
|
||||||
|
0 207 0
|
||||||
|
Testing that ^ has precedence over binary +
|
||||||
|
select 0xFF ^ 0xF0 + 0x0F, (0xFF ^ 0xF0) + 0x0F, 0xFF ^ (0xF0 + 0x0F);
|
||||||
|
0xFF ^ 0xF0 + 0x0F (0xFF ^ 0xF0) + 0x0F 0xFF ^ (0xF0 + 0x0F)
|
||||||
|
30 30 0
|
||||||
|
select 0x0F + 0xFF ^ 0xF0, (0x0F + 0xFF) ^ 0xF0, 0x0F + (0xFF ^ 0xF0);
|
||||||
|
0x0F + 0xFF ^ 0xF0 (0x0F + 0xFF) ^ 0xF0 0x0F + (0xFF ^ 0xF0)
|
||||||
|
30 510 30
|
||||||
|
Testing that ^ has precedence over binary -
|
||||||
|
select 0xFF ^ 0xF0 - 1, (0xFF ^ 0xF0) - 1, 0xFF ^ (0xF0 - 1);
|
||||||
|
0xFF ^ 0xF0 - 1 (0xFF ^ 0xF0) - 1 0xFF ^ (0xF0 - 1)
|
||||||
|
14 14 16
|
||||||
|
select 0x55 - 0x0F ^ 0x55, (0x55 - 0x0F) ^ 0x55, 0x55 - (0x0F ^ 0x55);
|
||||||
|
0x55 - 0x0F ^ 0x55 (0x55 - 0x0F) ^ 0x55 0x55 - (0x0F ^ 0x55)
|
||||||
|
-5 19 -5
|
||||||
|
Testing that ^ has precedence over *
|
||||||
|
select 0xFF ^ 0xF0 * 2, (0xFF ^ 0xF0) * 2, 0xFF ^ (0xF0 * 2);
|
||||||
|
0xFF ^ 0xF0 * 2 (0xFF ^ 0xF0) * 2 0xFF ^ (0xF0 * 2)
|
||||||
|
30 30 287
|
||||||
|
select 2 * 0xFF ^ 0xF0, (2 * 0xFF) ^ 0xF0, 2 * (0xFF ^ 0xF0);
|
||||||
|
2 * 0xFF ^ 0xF0 (2 * 0xFF) ^ 0xF0 2 * (0xFF ^ 0xF0)
|
||||||
|
30 270 30
|
||||||
|
Testing that ^ has precedence over /
|
||||||
|
select 0xFF ^ 0xF0 / 2, (0xFF ^ 0xF0) / 2, 0xFF ^ (0xF0 / 2);
|
||||||
|
0xFF ^ 0xF0 / 2 (0xFF ^ 0xF0) / 2 0xFF ^ (0xF0 / 2)
|
||||||
|
7.5000 7.5000 135
|
||||||
|
select 0xF2 / 2 ^ 0xF0, (0xF2 / 2) ^ 0xF0, 0xF2 / (2 ^ 0xF0);
|
||||||
|
0xF2 / 2 ^ 0xF0 (0xF2 / 2) ^ 0xF0 0xF2 / (2 ^ 0xF0)
|
||||||
|
1.0000 137 1.0000
|
||||||
|
Testing that ^ has precedence over %
|
||||||
|
select 0xFF ^ 0xF0 % 0x20, (0xFF ^ 0xF0) % 0x20, 0xFF ^ (0xF0 % 0x20);
|
||||||
|
0xFF ^ 0xF0 % 0x20 (0xFF ^ 0xF0) % 0x20 0xFF ^ (0xF0 % 0x20)
|
||||||
|
15 15 239
|
||||||
|
select 0xFF % 0x20 ^ 0xF0, (0xFF % 0x20) ^ 0xF0, 0xFF % (0x20 ^ 0xF0);
|
||||||
|
0xFF % 0x20 ^ 0xF0 (0xFF % 0x20) ^ 0xF0 0xFF % (0x20 ^ 0xF0)
|
||||||
|
47 239 47
|
||||||
|
Testing that ^ has precedence over DIV
|
||||||
|
select 0xFF ^ 0xF0 DIV 2, (0xFF ^ 0xF0) DIV 2, 0xFF ^ (0xF0 DIV 2);
|
||||||
|
0xFF ^ 0xF0 DIV 2 (0xFF ^ 0xF0) DIV 2 0xFF ^ (0xF0 DIV 2)
|
||||||
|
7 7 135
|
||||||
|
select 0xF2 DIV 2 ^ 0xF0, (0xF2 DIV 2) ^ 0xF0, 0xF2 DIV (2 ^ 0xF0);
|
||||||
|
0xF2 DIV 2 ^ 0xF0 (0xF2 DIV 2) ^ 0xF0 0xF2 DIV (2 ^ 0xF0)
|
||||||
|
1 137 1
|
||||||
|
Testing that ^ has precedence over MOD
|
||||||
|
select 0xFF ^ 0xF0 MOD 0x20, (0xFF ^ 0xF0) MOD 0x20, 0xFF ^ (0xF0 MOD 0x20);
|
||||||
|
0xFF ^ 0xF0 MOD 0x20 (0xFF ^ 0xF0) MOD 0x20 0xFF ^ (0xF0 MOD 0x20)
|
||||||
|
15 15 239
|
||||||
|
select 0xFF MOD 0x20 ^ 0xF0, (0xFF MOD 0x20) ^ 0xF0, 0xFF MOD (0x20 ^ 0xF0);
|
||||||
|
0xFF MOD 0x20 ^ 0xF0 (0xFF MOD 0x20) ^ 0xF0 0xFF MOD (0x20 ^ 0xF0)
|
||||||
|
47 239 47
|
@ -269,7 +269,7 @@ prepare stmt4 from ' show columns from t2 where field in (select ?) ';
|
|||||||
SET @arg00="a";
|
SET @arg00="a";
|
||||||
execute stmt4 using @arg00;
|
execute stmt4 using @arg00;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO PRI
|
a int(11) NO PRI NULL
|
||||||
SET @arg00="b";
|
SET @arg00="b";
|
||||||
execute stmt4 using @arg00;
|
execute stmt4 using @arg00;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
@ -280,7 +280,7 @@ Field Type Null Key Default Extra
|
|||||||
prepare stmt4 from ' show columns from t2 from test like ''a%'' ';
|
prepare stmt4 from ' show columns from t2 from test like ''a%'' ';
|
||||||
execute stmt4;
|
execute stmt4;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO PRI
|
a int(11) NO PRI NULL
|
||||||
create index t2_idx on t2(b);
|
create index t2_idx on t2(b);
|
||||||
prepare stmt4 from ' show index from t2 from test ';
|
prepare stmt4 from ' show index from t2 from test ';
|
||||||
execute stmt4;
|
execute stmt4;
|
||||||
@ -409,7 +409,7 @@ drop database mysqltest ;
|
|||||||
prepare stmt3 from ' describe t2 ';
|
prepare stmt3 from ' describe t2 ';
|
||||||
execute stmt3;
|
execute stmt3;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) NO PRI
|
a int(11) NO PRI NULL
|
||||||
b char(10) YES MUL NULL
|
b char(10) YES MUL NULL
|
||||||
drop table t2 ;
|
drop table t2 ;
|
||||||
execute stmt3;
|
execute stmt3;
|
||||||
|
@ -4062,4 +4062,38 @@ SHOW WARNINGS;
|
|||||||
Level Code Message
|
Level Code Message
|
||||||
Note 1003 select '0' AS `c1` from `test`.`t1` `join_0` join `test`.`t1` `join_1` join `test`.`t1` `join_2` join `test`.`t1` `join_3` join `test`.`t1` `join_4` join `test`.`t1` `join_5` join `test`.`t1` `join_6` join `test`.`t1` `join_7` where 0 group by '0','0','0','0','0'
|
Note 1003 select '0' AS `c1` from `test`.`t1` `join_0` join `test`.`t1` `join_1` join `test`.`t1` `join_2` join `test`.`t1` `join_3` join `test`.`t1` `join_4` join `test`.`t1` `join_5` join `test`.`t1` `join_6` join `test`.`t1` `join_7` where 0 group by '0','0','0','0','0'
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
SELECT 1 AS ` `;
|
||||||
|
|
||||||
|
1
|
||||||
|
Warnings:
|
||||||
|
Warning 1474 Name ' ' has become ''
|
||||||
|
SELECT 1 AS ` `;
|
||||||
|
|
||||||
|
1
|
||||||
|
Warnings:
|
||||||
|
Warning 1474 Name ' ' has become ''
|
||||||
|
SELECT 1 AS ` x`;
|
||||||
|
x
|
||||||
|
1
|
||||||
|
Warnings:
|
||||||
|
Warning 1466 Leading spaces are removed from name ' x'
|
||||||
|
CREATE VIEW v1 AS SELECT 1 AS ` `;
|
||||||
|
Warnings:
|
||||||
|
Warning 1474 Name ' ' has become ''
|
||||||
|
SELECT `` FROM v1;
|
||||||
|
|
||||||
|
1
|
||||||
|
CREATE VIEW v2 AS SELECT 1 AS ` `;
|
||||||
|
Warnings:
|
||||||
|
Warning 1474 Name ' ' has become ''
|
||||||
|
SELECT `` FROM v2;
|
||||||
|
|
||||||
|
1
|
||||||
|
CREATE VIEW v3 AS SELECT 1 AS ` x`;
|
||||||
|
Warnings:
|
||||||
|
Warning 1466 Leading spaces are removed from name ' x'
|
||||||
|
SELECT `x` FROM v3;
|
||||||
|
x
|
||||||
|
1
|
||||||
|
DROP VIEW v1, v2, v3;
|
||||||
End of 5.0 tests
|
End of 5.0 tests
|
||||||
|
2155
mysql-test/r/shm.result
Normal file
2155
mysql-test/r/shm.result
Normal file
File diff suppressed because it is too large
Load Diff
@ -228,7 +228,7 @@ show full columns from t1;
|
|||||||
Field Type Collation Null Key Default Extra Privileges Comment
|
Field Type Collation Null Key Default Extra Privileges Comment
|
||||||
test_set set('val1','val2','val3') latin1_swedish_ci NO select,insert,update,references
|
test_set set('val1','val2','val3') latin1_swedish_ci NO select,insert,update,references
|
||||||
name char(20) latin1_swedish_ci YES O'Brien select,insert,update,references O'Brien as default
|
name char(20) latin1_swedish_ci YES O'Brien select,insert,update,references O'Brien as default
|
||||||
c int(11) NULL NO select,insert,update,references int column
|
c int(11) NULL NO NULL select,insert,update,references int column
|
||||||
c-b int(11) NULL YES NULL select,insert,update,references name with a minus
|
c-b int(11) NULL YES NULL select,insert,update,references name with a minus
|
||||||
space 2 int(11) NULL YES NULL select,insert,update,references name with a space
|
space 2 int(11) NULL YES NULL select,insert,update,references name with a space
|
||||||
drop table t1;
|
drop table t1;
|
||||||
@ -901,7 +901,7 @@ def COLUMNS COLUMN_KEY Key 253 9 3 N 1 0 33
|
|||||||
def COLUMNS COLUMN_DEFAULT Default 252 589815 0 Y 16 0 33
|
def COLUMNS COLUMN_DEFAULT Default 252 589815 0 Y 16 0 33
|
||||||
def COLUMNS EXTRA Extra 253 60 0 N 1 0 33
|
def COLUMNS EXTRA Extra 253 60 0 N 1 0 33
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
c int(11) NO PRI
|
c int(11) NO PRI NULL
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
SHOW TRIGGERS LIKE 't1';
|
SHOW TRIGGERS LIKE 't1';
|
||||||
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
||||||
|
@ -2468,7 +2468,7 @@ Database (foo)
|
|||||||
Level Code Message
|
Level Code Message
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
id char(16) NO
|
id char(16) NO
|
||||||
data int(11) NO
|
data int(11) NO NULL
|
||||||
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
||||||
Database Table In_use Name_locked
|
Database Table In_use Name_locked
|
||||||
Privilege Context Comment
|
Privilege Context Comment
|
||||||
@ -2520,7 +2520,7 @@ Database (foo)
|
|||||||
Level Code Message
|
Level Code Message
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
id char(16) NO
|
id char(16) NO
|
||||||
data int(11) NO
|
data int(11) NO NULL
|
||||||
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
||||||
Database Table In_use Name_locked
|
Database Table In_use Name_locked
|
||||||
Privilege Context Comment
|
Privilege Context Comment
|
||||||
@ -6315,4 +6315,78 @@ CALL p1();
|
|||||||
NULL
|
NULL
|
||||||
SET NAMES default;
|
SET NAMES default;
|
||||||
DROP PROCEDURE p1;
|
DROP PROCEDURE p1;
|
||||||
|
create function f1()
|
||||||
|
returns int(11)
|
||||||
|
not deterministic
|
||||||
|
contains sql
|
||||||
|
sql security definer
|
||||||
|
comment ''
|
||||||
|
begin
|
||||||
|
declare x int(11);
|
||||||
|
set x=-1;
|
||||||
|
return x;
|
||||||
|
end|
|
||||||
|
create view v1 as select 1 as one, f1() as days;
|
||||||
|
show create view test.v1;
|
||||||
|
View Create View
|
||||||
|
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `test`.`v1` AS select 1 AS `one`,`f1`() AS `days`
|
||||||
|
select column_name from information_schema.columns
|
||||||
|
where table_name='v1' and table_schema='test';
|
||||||
|
column_name
|
||||||
|
one
|
||||||
|
days
|
||||||
|
drop view v1;
|
||||||
|
drop function f1;
|
||||||
|
|
||||||
|
# Bug#13675.
|
||||||
|
|
||||||
|
DROP PROCEDURE IF EXISTS p1;
|
||||||
|
DROP PROCEDURE IF EXISTS p2;
|
||||||
|
DROP TABLE IF EXISTS t1;
|
||||||
|
|
||||||
|
CREATE PROCEDURE p1(v DATETIME) CREATE TABLE t1 SELECT v;
|
||||||
|
CREATE PROCEDURE p2(v INT) CREATE TABLE t1 SELECT v;
|
||||||
|
|
||||||
|
CALL p1(NOW());
|
||||||
|
SHOW CREATE TABLE t1;
|
||||||
|
Table Create Table
|
||||||
|
t1 CREATE TABLE `t1` (
|
||||||
|
`v` datetime default NULL
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
CALL p1('text');
|
||||||
|
Warnings:
|
||||||
|
Warning 1264 Out of range value adjusted for column 'v' at row 1
|
||||||
|
SHOW CREATE TABLE t1;
|
||||||
|
Table Create Table
|
||||||
|
t1 CREATE TABLE `t1` (
|
||||||
|
`v` datetime default NULL
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
CALL p2(10);
|
||||||
|
SHOW CREATE TABLE t1;
|
||||||
|
Table Create Table
|
||||||
|
t1 CREATE TABLE `t1` (
|
||||||
|
`v` bigint(11) default NULL
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
CALL p2('text');
|
||||||
|
Warnings:
|
||||||
|
Warning 1366 Incorrect integer value: 'text' for column 'v' at row 1
|
||||||
|
SHOW CREATE TABLE t1;
|
||||||
|
Table Create Table
|
||||||
|
t1 CREATE TABLE `t1` (
|
||||||
|
`v` bigint(11) default NULL
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
DROP PROCEDURE p1;
|
||||||
|
DROP PROCEDURE p2;
|
||||||
End of 5.0 tests
|
End of 5.0 tests
|
||||||
|
@ -43,3 +43,51 @@ SHOW STATUS LIKE 'max_used_connections';
|
|||||||
Variable_name Value
|
Variable_name Value
|
||||||
Max_used_connections 4
|
Max_used_connections 4
|
||||||
SET GLOBAL thread_cache_size=@save_thread_cache_size;
|
SET GLOBAL thread_cache_size=@save_thread_cache_size;
|
||||||
|
CREATE TABLE t1 ( a INT );
|
||||||
|
INSERT INTO t1 VALUES (1), (2);
|
||||||
|
SELECT a FROM t1 LIMIT 1;
|
||||||
|
a
|
||||||
|
1
|
||||||
|
SHOW SESSION STATUS LIKE 'Last_query_cost';
|
||||||
|
Variable_name Value
|
||||||
|
Last_query_cost 2.402418
|
||||||
|
EXPLAIN SELECT a FROM t1;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 SIMPLE t1 ALL NULL NULL NULL NULL 2
|
||||||
|
SHOW SESSION STATUS LIKE 'Last_query_cost';
|
||||||
|
Variable_name Value
|
||||||
|
Last_query_cost 2.402418
|
||||||
|
SELECT a FROM t1 UNION SELECT a FROM t1 ORDER BY a;
|
||||||
|
a
|
||||||
|
1
|
||||||
|
2
|
||||||
|
SHOW SESSION STATUS LIKE 'Last_query_cost';
|
||||||
|
Variable_name Value
|
||||||
|
Last_query_cost 0.000000
|
||||||
|
EXPLAIN SELECT a FROM t1 UNION SELECT a FROM t1 ORDER BY a;
|
||||||
|
id select_type table type possible_keys key key_len ref rows Extra
|
||||||
|
1 PRIMARY t1 ALL NULL NULL NULL NULL 2
|
||||||
|
2 UNION t1 ALL NULL NULL NULL NULL 2
|
||||||
|
NULL UNION RESULT <union1,2> ALL NULL NULL NULL NULL NULL Using filesort
|
||||||
|
SHOW SESSION STATUS LIKE 'Last_query_cost';
|
||||||
|
Variable_name Value
|
||||||
|
Last_query_cost 0.000000
|
||||||
|
SELECT a IN (SELECT a FROM t1) FROM t1 LIMIT 1;
|
||||||
|
a IN (SELECT a FROM t1)
|
||||||
|
1
|
||||||
|
SHOW SESSION STATUS LIKE 'Last_query_cost';
|
||||||
|
Variable_name Value
|
||||||
|
Last_query_cost 0.000000
|
||||||
|
SELECT (SELECT a FROM t1 LIMIT 1) x FROM t1 LIMIT 1;
|
||||||
|
x
|
||||||
|
1
|
||||||
|
SHOW SESSION STATUS LIKE 'Last_query_cost';
|
||||||
|
Variable_name Value
|
||||||
|
Last_query_cost 0.000000
|
||||||
|
SELECT * FROM t1 a, t1 b LIMIT 1;
|
||||||
|
a a
|
||||||
|
1 1
|
||||||
|
SHOW SESSION STATUS LIKE 'Last_query_cost';
|
||||||
|
Variable_name Value
|
||||||
|
Last_query_cost 4.805836
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -642,4 +642,34 @@ b+0 COUNT(DISTINCT a)
|
|||||||
1 1
|
1 1
|
||||||
3 2
|
3 2
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
CREATE TABLE t1 (b BIT);
|
||||||
|
INSERT INTO t1 (b) VALUES (1), (0);
|
||||||
|
SELECT DISTINCT b FROM t1;
|
||||||
|
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
||||||
|
def test t1 t1 b b 16 1 1 Y 32 0 63
|
||||||
|
b
|
||||||
|
#
|
||||||
|
#
|
||||||
|
SELECT b FROM t1 GROUP BY b;
|
||||||
|
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
||||||
|
def test t1 t1 b b 16 1 1 Y 32 0 63
|
||||||
|
b
|
||||||
|
#
|
||||||
|
#
|
||||||
|
DROP TABLE t1;
|
||||||
|
CREATE TABLE t1 (a int, b bit(2));
|
||||||
|
INSERT INTO t1 VALUES (3, 2), (2, 3), (2, 0), (3, 2), (3, 1);
|
||||||
|
SELECT COUNT(DISTINCT b) FROM t1 GROUP BY a;
|
||||||
|
COUNT(DISTINCT b)
|
||||||
|
2
|
||||||
|
2
|
||||||
|
DROP TABLE t1;
|
||||||
|
create table t2 (a int, b bit(2), c char(10));
|
||||||
|
INSERT INTO t2 VALUES (3, 2, 'two'), (2, 3, 'three'), (2, 0, 'zero'),
|
||||||
|
(3, 2, 'two'), (3, 1, 'one');
|
||||||
|
SELECT COUNT(DISTINCT b,c) FROM t2 GROUP BY a;
|
||||||
|
COUNT(DISTINCT b,c)
|
||||||
|
2
|
||||||
|
2
|
||||||
|
DROP TABLE t2;
|
||||||
End of 5.0 tests
|
End of 5.0 tests
|
||||||
|
@ -1675,7 +1675,7 @@ t1 CREATE TABLE `t1` (
|
|||||||
show columns from t1;
|
show columns from t1;
|
||||||
Field Type Null Key Default Extra
|
Field Type Null Key Default Extra
|
||||||
a int(11) YES 1
|
a int(11) YES 1
|
||||||
b enum('value','<27><><EFBFBD>_value','<27><><EFBFBD>') NO
|
b enum('value','<27><><EFBFBD>_value','<27><><EFBFBD>') NO NULL
|
||||||
drop table t1;
|
drop table t1;
|
||||||
CREATE TABLE t1 (c enum('a', 'A') BINARY);
|
CREATE TABLE t1 (c enum('a', 'A') BINARY);
|
||||||
INSERT INTO t1 VALUES ('a'),('A');
|
INSERT INTO t1 VALUES ('a'),('A');
|
||||||
|
@ -63,9 +63,9 @@ time_field time NULL YES NULL #
|
|||||||
date_time datetime NULL YES NULL #
|
date_time datetime NULL YES NULL #
|
||||||
blob_col blob NULL YES NULL #
|
blob_col blob NULL YES NULL #
|
||||||
tinyblob_col tinyblob NULL YES NULL #
|
tinyblob_col tinyblob NULL YES NULL #
|
||||||
mediumblob_col mediumblob NULL NO #
|
mediumblob_col mediumblob NULL NO NULL #
|
||||||
longblob_col longblob NULL NO #
|
longblob_col longblob NULL NO NULL #
|
||||||
options enum('one','two','tree') latin1_swedish_ci NO MUL #
|
options enum('one','two','tree') latin1_swedish_ci NO MUL NULL #
|
||||||
flags set('one','two','tree') latin1_swedish_ci NO #
|
flags set('one','two','tree') latin1_swedish_ci NO #
|
||||||
show keys from t1;
|
show keys from t1;
|
||||||
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
|
||||||
@ -214,7 +214,7 @@ Field Type Collation Null Key Default Extra Privileges Comment
|
|||||||
auto int(5) unsigned NULL NO MUL NULL auto_increment #
|
auto int(5) unsigned NULL NO MUL NULL auto_increment #
|
||||||
string char(10) latin1_swedish_ci YES newdefault #
|
string char(10) latin1_swedish_ci YES newdefault #
|
||||||
tiny tinyint(4) NULL NO MUL 0 #
|
tiny tinyint(4) NULL NO MUL 0 #
|
||||||
short smallint(6) NULL NO MUL #
|
short smallint(6) NULL NO MUL NULL #
|
||||||
medium mediumint(8) NULL NO MUL 0 #
|
medium mediumint(8) NULL NO MUL 0 #
|
||||||
long_int int(11) NULL NO 0 #
|
long_int int(11) NULL NO 0 #
|
||||||
longlong bigint(13) NULL NO MUL 0 #
|
longlong bigint(13) NULL NO MUL 0 #
|
||||||
@ -231,8 +231,8 @@ time_field time NULL YES NULL #
|
|||||||
date_time datetime NULL YES NULL #
|
date_time datetime NULL YES NULL #
|
||||||
new_blob_col varchar(20) latin1_swedish_ci YES NULL #
|
new_blob_col varchar(20) latin1_swedish_ci YES NULL #
|
||||||
tinyblob_col tinyblob NULL YES NULL #
|
tinyblob_col tinyblob NULL YES NULL #
|
||||||
mediumblob_col mediumblob NULL NO #
|
mediumblob_col mediumblob NULL NO NULL #
|
||||||
options enum('one','two','tree') latin1_swedish_ci NO MUL #
|
options enum('one','two','tree') latin1_swedish_ci NO MUL NULL #
|
||||||
flags set('one','two','tree') latin1_swedish_ci NO #
|
flags set('one','two','tree') latin1_swedish_ci NO #
|
||||||
new_field char(10) latin1_swedish_ci NO new #
|
new_field char(10) latin1_swedish_ci NO new #
|
||||||
show full columns from t2;
|
show full columns from t2;
|
||||||
@ -240,7 +240,7 @@ Field Type Collation Null Key Default Extra Privileges Comment
|
|||||||
auto int(5) unsigned NULL NO 0 #
|
auto int(5) unsigned NULL NO 0 #
|
||||||
string char(10) latin1_swedish_ci YES newdefault #
|
string char(10) latin1_swedish_ci YES newdefault #
|
||||||
tiny tinyint(4) NULL NO 0 #
|
tiny tinyint(4) NULL NO 0 #
|
||||||
short smallint(6) NULL NO #
|
short smallint(6) NULL NO NULL #
|
||||||
medium mediumint(8) NULL NO 0 #
|
medium mediumint(8) NULL NO 0 #
|
||||||
long_int int(11) NULL NO 0 #
|
long_int int(11) NULL NO 0 #
|
||||||
longlong bigint(13) NULL NO 0 #
|
longlong bigint(13) NULL NO 0 #
|
||||||
@ -257,8 +257,8 @@ time_field time NULL YES NULL #
|
|||||||
date_time datetime NULL YES NULL #
|
date_time datetime NULL YES NULL #
|
||||||
new_blob_col varchar(20) latin1_swedish_ci YES NULL #
|
new_blob_col varchar(20) latin1_swedish_ci YES NULL #
|
||||||
tinyblob_col tinyblob NULL YES NULL #
|
tinyblob_col tinyblob NULL YES NULL #
|
||||||
mediumblob_col mediumblob NULL NO #
|
mediumblob_col mediumblob NULL NO NULL #
|
||||||
options enum('one','two','tree') latin1_swedish_ci NO #
|
options enum('one','two','tree') latin1_swedish_ci NO NULL #
|
||||||
flags set('one','two','tree') latin1_swedish_ci NO #
|
flags set('one','two','tree') latin1_swedish_ci NO #
|
||||||
new_field char(10) latin1_swedish_ci NO new #
|
new_field char(10) latin1_swedish_ci NO new #
|
||||||
select t1.auto,t2.auto from t1,t2 where t1.auto=t2.auto and ((t1.string<>t2.string and (t1.string is not null or t2.string is not null)) or (t1.tiny<>t2.tiny and (t1.tiny is not null or t2.tiny is not null)) or (t1.short<>t2.short and (t1.short is not null or t2.short is not null)) or (t1.medium<>t2.medium and (t1.medium is not null or t2.medium is not null)) or (t1.long_int<>t2.long_int and (t1.long_int is not null or t2.long_int is not null)) or (t1.longlong<>t2.longlong and (t1.longlong is not null or t2.longlong is not null)) or (t1.real_float<>t2.real_float and (t1.real_float is not null or t2.real_float is not null)) or (t1.real_double<>t2.real_double and (t1.real_double is not null or t2.real_double is not null)) or (t1.utiny<>t2.utiny and (t1.utiny is not null or t2.utiny is not null)) or (t1.ushort<>t2.ushort and (t1.ushort is not null or t2.ushort is not null)) or (t1.umedium<>t2.umedium and (t1.umedium is not null or t2.umedium is not null)) or (t1.ulong<>t2.ulong and (t1.ulong is not null or t2.ulong is not null)) or (t1.ulonglong<>t2.ulonglong and (t1.ulonglong is not null or t2.ulonglong is not null)) or (t1.time_stamp<>t2.time_stamp and (t1.time_stamp is not null or t2.time_stamp is not null)) or (t1.date_field<>t2.date_field and (t1.date_field is not null or t2.date_field is not null)) or (t1.time_field<>t2.time_field and (t1.time_field is not null or t2.time_field is not null)) or (t1.date_time<>t2.date_time and (t1.date_time is not null or t2.date_time is not null)) or (t1.new_blob_col<>t2.new_blob_col and (t1.new_blob_col is not null or t2.new_blob_col is not null)) or (t1.tinyblob_col<>t2.tinyblob_col and (t1.tinyblob_col is not null or t2.tinyblob_col is not null)) or (t1.mediumblob_col<>t2.mediumblob_col and (t1.mediumblob_col is not null or t2.mediumblob_col is not null)) or (t1.options<>t2.options and (t1.options is not null or t2.options is not null)) or (t1.flags<>t2.flags and (t1.flags is not null or t2.flags is not null)) or (t1.new_field<>t2.new_field and (t1.new_field is not null or t2.new_field is not null)));
|
select t1.auto,t2.auto from t1,t2 where t1.auto=t2.auto and ((t1.string<>t2.string and (t1.string is not null or t2.string is not null)) or (t1.tiny<>t2.tiny and (t1.tiny is not null or t2.tiny is not null)) or (t1.short<>t2.short and (t1.short is not null or t2.short is not null)) or (t1.medium<>t2.medium and (t1.medium is not null or t2.medium is not null)) or (t1.long_int<>t2.long_int and (t1.long_int is not null or t2.long_int is not null)) or (t1.longlong<>t2.longlong and (t1.longlong is not null or t2.longlong is not null)) or (t1.real_float<>t2.real_float and (t1.real_float is not null or t2.real_float is not null)) or (t1.real_double<>t2.real_double and (t1.real_double is not null or t2.real_double is not null)) or (t1.utiny<>t2.utiny and (t1.utiny is not null or t2.utiny is not null)) or (t1.ushort<>t2.ushort and (t1.ushort is not null or t2.ushort is not null)) or (t1.umedium<>t2.umedium and (t1.umedium is not null or t2.umedium is not null)) or (t1.ulong<>t2.ulong and (t1.ulong is not null or t2.ulong is not null)) or (t1.ulonglong<>t2.ulonglong and (t1.ulonglong is not null or t2.ulonglong is not null)) or (t1.time_stamp<>t2.time_stamp and (t1.time_stamp is not null or t2.time_stamp is not null)) or (t1.date_field<>t2.date_field and (t1.date_field is not null or t2.date_field is not null)) or (t1.time_field<>t2.time_field and (t1.time_field is not null or t2.time_field is not null)) or (t1.date_time<>t2.date_time and (t1.date_time is not null or t2.date_time is not null)) or (t1.new_blob_col<>t2.new_blob_col and (t1.new_blob_col is not null or t2.new_blob_col is not null)) or (t1.tinyblob_col<>t2.tinyblob_col and (t1.tinyblob_col is not null or t2.tinyblob_col is not null)) or (t1.mediumblob_col<>t2.mediumblob_col and (t1.mediumblob_col is not null or t2.mediumblob_col is not null)) or (t1.options<>t2.options and (t1.options is not null or t2.options is not null)) or (t1.flags<>t2.flags and (t1.flags is not null or t2.flags is not null)) or (t1.new_field<>t2.new_field and (t1.new_field is not null or t2.new_field is not null)));
|
||||||
@ -276,8 +276,8 @@ t1 int(1) NULL NO 0 #
|
|||||||
t2 varchar(1) latin1_swedish_ci NO #
|
t2 varchar(1) latin1_swedish_ci NO #
|
||||||
t3 varchar(256) latin1_swedish_ci NO #
|
t3 varchar(256) latin1_swedish_ci NO #
|
||||||
t4 varbinary(256) NULL NO #
|
t4 varbinary(256) NULL NO #
|
||||||
t5 longtext latin1_swedish_ci NO #
|
t5 longtext latin1_swedish_ci NO NULL #
|
||||||
t6 longblob NULL NO #
|
t6 longblob NULL NO NULL #
|
||||||
t7 char(0) latin1_swedish_ci NO #
|
t7 char(0) latin1_swedish_ci NO #
|
||||||
t8 binary(0) NULL NO #
|
t8 binary(0) NULL NO #
|
||||||
select t1,t2,length(t3),length(t4),length(t5),length(t6),t7,t8 from t2;
|
select t1,t2,length(t3),length(t4),length(t5),length(t6),t7,t8 from t2;
|
||||||
|
@ -296,4 +296,28 @@ Qcache_queries_in_cache 0
|
|||||||
drop table t1;
|
drop table t1;
|
||||||
drop function metaphon;
|
drop function metaphon;
|
||||||
set GLOBAL query_cache_size=default;
|
set GLOBAL query_cache_size=default;
|
||||||
|
CREATE TABLE const_len_bug (
|
||||||
|
str_const varchar(4000),
|
||||||
|
result1 varchar(4000),
|
||||||
|
result2 varchar(4000)
|
||||||
|
);
|
||||||
|
CREATE TRIGGER check_const_len_trigger BEFORE INSERT ON const_len_bug FOR EACH ROW BEGIN
|
||||||
|
set NEW.str_const = 'bar';
|
||||||
|
set NEW.result2 = check_const_len(NEW.str_const);
|
||||||
|
END |
|
||||||
|
CREATE PROCEDURE check_const_len_sp (IN str_const VARCHAR(4000))
|
||||||
|
BEGIN
|
||||||
|
DECLARE result VARCHAR(4000);
|
||||||
|
SET result = check_const_len(str_const);
|
||||||
|
insert into const_len_bug values(str_const, result, "");
|
||||||
|
END |
|
||||||
|
CREATE FUNCTION check_const_len RETURNS string SONAME "UDF_EXAMPLE_LIB";
|
||||||
|
CALL check_const_len_sp("foo");
|
||||||
|
SELECT * from const_len_bug;
|
||||||
|
str_const result1 result2
|
||||||
|
bar Correct length Correct length
|
||||||
|
DROP FUNCTION check_const_len;
|
||||||
|
DROP PROCEDURE check_const_len_sp;
|
||||||
|
DROP TRIGGER check_const_len_trigger;
|
||||||
|
DROP TABLE const_len_bug;
|
||||||
End of 5.0 tests.
|
End of 5.0 tests.
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
mysqld is alive
|
|
||||||
End of 5.0 tests.
|
|
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1-0.1.Data
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1-0.1.Data
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1-0.2.Data
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1-0.2.Data
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.1.ctl
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.1.ctl
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.1.log
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.1.log
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.2.ctl
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.2.ctl
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.2.log
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_be/BACKUP-1.2.log
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1-0.1.Data
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1-0.1.Data
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1-0.2.Data
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1-0.2.Data
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.1.ctl
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.1.ctl
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.1.log
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.1.log
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.2.ctl
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.2.ctl
Normal file
Binary file not shown.
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.2.log
Normal file
BIN
mysql-test/std_data/ndb_backup50_data_le/BACKUP-1.2.log
Normal file
Binary file not shown.
@ -110,3 +110,25 @@ Carsten 16.09.2005
|
|||||||
4. Fixed datadict_<engine>.result files after the change that added 2 columns to
|
4. Fixed datadict_<engine>.result files after the change that added 2 columns to
|
||||||
the VIEWS table (DEFINER varchar(77), SECURITY_TYPE varchar(7)).
|
the VIEWS table (DEFINER varchar(77), SECURITY_TYPE varchar(7)).
|
||||||
===================================================================
|
===================================================================
|
||||||
|
Matthias 25.08.2007
|
||||||
|
-------------------
|
||||||
|
Fixes for Bugs 30418,30420,30438,30440
|
||||||
|
1. Replace error numbers with error names
|
||||||
|
2. Replace static "InnoDB" (not all time available) used within an
|
||||||
|
"alter table" by $OTHER_ENGINE_TYPE (set to MEMORY or MyISAM).
|
||||||
|
Minor adjustment of column data type.
|
||||||
|
3. Use mysqltest result set sorting in several cases.
|
||||||
|
4. Avoid any statistics about help tables, because their content
|
||||||
|
depends on configuration:
|
||||||
|
developer release - help tables are empty
|
||||||
|
build release - help tables have content + growing with version
|
||||||
|
5. Add two help table related tests (one for build, one for developer)
|
||||||
|
to ensure that informations about help tables within
|
||||||
|
INFORMATION_SCHEMA.TABLES/STATISTICS are checked.
|
||||||
|
General note:
|
||||||
|
Most INFORMATION_SCHEMA properties (table layout, permissions etc.)
|
||||||
|
are not affected by our variation of the storage engines except
|
||||||
|
that some properties of our tables using a specific storage
|
||||||
|
engine become visible. So it makes sense to decompose
|
||||||
|
this test into a storage engine specific part and a non
|
||||||
|
storage engine specific part in future.
|
||||||
|
File diff suppressed because it is too large
Load Diff
22
mysql-test/suite/funcs_1/r/datadict_help_tables_build.result
Normal file
22
mysql-test/suite/funcs_1/r/datadict_help_tables_build.result
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
DELETE FROM mysql.help_category LIMIT <number>;
|
||||||
|
DELETE FROM mysql.help_keyword LIMIT <number>;
|
||||||
|
DELETE FROM mysql.help_relation LIMIT <number>;
|
||||||
|
DELETE FROM mysql.help_topic LIMIT <number>;
|
||||||
|
SELECT * FROM INFORMATION_SCHEMA.TABLES
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
||||||
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
||||||
|
NULL mysql help_category BASE TABLE MyISAM 10 Fixed 30 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help categories
|
||||||
|
NULL mysql help_keyword BASE TABLE MyISAM 10 Fixed 320 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help keywords
|
||||||
|
NULL mysql help_relation BASE TABLE MyISAM 10 Fixed 640 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL keyword-topic relation
|
||||||
|
NULL mysql help_topic BASE TABLE MyISAM 10 Dynamic 380 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help topics
|
||||||
|
SELECT * FROM INFORMATION_SCHEMA.STATISTICS
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
||||||
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
|
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 30 NULL NULL BTREE
|
||||||
|
NULL mysql help_category 0 mysql name 1 name A 30 NULL NULL BTREE
|
||||||
|
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 320 NULL NULL BTREE
|
||||||
|
NULL mysql help_keyword 0 mysql name 1 name A 320 NULL NULL BTREE
|
||||||
|
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
||||||
|
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 640 NULL NULL BTREE
|
||||||
|
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 380 NULL NULL BTREE
|
||||||
|
NULL mysql help_topic 0 mysql name 1 name A 380 NULL NULL BTREE
|
18
mysql-test/suite/funcs_1/r/datadict_help_tables_dev.result
Normal file
18
mysql-test/suite/funcs_1/r/datadict_help_tables_dev.result
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
SELECT * FROM INFORMATION_SCHEMA.TABLES
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
||||||
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
||||||
|
NULL mysql help_category BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help categories
|
||||||
|
NULL mysql help_keyword BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help keywords
|
||||||
|
NULL mysql help_relation BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL keyword-topic relation
|
||||||
|
NULL mysql help_topic BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help topics
|
||||||
|
SELECT * FROM INFORMATION_SCHEMA.STATISTICS
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
||||||
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
|
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
|
||||||
|
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
||||||
|
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
|
||||||
|
NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
|
||||||
|
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
||||||
|
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
|
||||||
|
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
|
||||||
|
NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
|
@ -10,8 +10,9 @@
|
|||||||
. *__datadict.test are started. This can be a result of showing e.g. maximum
|
. *__datadict.test are started. This can be a result of showing e.g. maximum
|
||||||
. values of the number of rows of tables.
|
. values of the number of rows of tables.
|
||||||
.
|
.
|
||||||
. This .result file has been checked OK with Linux 5.0.23-bk,
|
. This .result file has been checked OK with Linux 5.0.48,
|
||||||
. ChangeSet@1.2211, 2006-06-28 10:11:43-07:00.
|
. build tree ChangeSet@1.2477.6.3, 2007-07-30
|
||||||
|
. except that the not fixed Bug#30020 causes a difference.
|
||||||
.
|
.
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -793,7 +794,8 @@ CHECKSUM NULL
|
|||||||
CREATE_OPTIONS #CO#
|
CREATE_OPTIONS #CO#
|
||||||
TABLE_COMMENT
|
TABLE_COMMENT
|
||||||
SELECT * FROM tables
|
SELECT * FROM tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema')
|
||||||
|
AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA db_datadict
|
TABLE_SCHEMA db_datadict
|
||||||
TABLE_NAME v1
|
TABLE_NAME v1
|
||||||
@ -922,90 +924,6 @@ CREATE_OPTIONS
|
|||||||
TABLE_COMMENT User defined functions
|
TABLE_COMMENT User defined functions
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA mysql
|
TABLE_SCHEMA mysql
|
||||||
TABLE_NAME help_category
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help categories
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_keyword
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help keywords
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_relation
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT keyword-topic relation
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_topic
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Dynamic
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help topics
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME host
|
TABLE_NAME host
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MyISAM
|
ENGINE MyISAM
|
||||||
@ -2539,7 +2457,7 @@ cp932 cp932_japanese_ci SJIS for Windows Japanese 2
|
|||||||
eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
|
eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
|
||||||
select sum(id) from collations;
|
select sum(id) from collations;
|
||||||
sum(id)
|
sum(id)
|
||||||
10741
|
10995
|
||||||
select collation_name, character_set_name into @x,@y
|
select collation_name, character_set_name into @x,@y
|
||||||
from collation_character_set_applicability limit 1;
|
from collation_character_set_applicability limit 1;
|
||||||
select @x, @y;
|
select @x, @y;
|
||||||
@ -2553,7 +2471,8 @@ END NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh
|
|||||||
select count(*) from routines;
|
select count(*) from routines;
|
||||||
count(*)
|
count(*)
|
||||||
1
|
1
|
||||||
select * from statistics;
|
select * from statistics
|
||||||
|
where not (table_schema = 'mysql' and table_name like 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
||||||
@ -2565,14 +2484,6 @@ NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
|||||||
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
||||||
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
||||||
@ -2781,7 +2692,8 @@ NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
|
|||||||
select count(*) as max_recs from key_column_usage;
|
select count(*) as max_recs from key_column_usage;
|
||||||
max_recs
|
max_recs
|
||||||
40
|
40
|
||||||
select max(cardinality) from statistics;
|
select max(cardinality) from statistics
|
||||||
|
where not (table_schema = 'mysql' and table_name like 'help_%');
|
||||||
max(cardinality)
|
max(cardinality)
|
||||||
393
|
393
|
||||||
select concat("View '",
|
select concat("View '",
|
||||||
@ -3408,7 +3320,8 @@ CHECKSUM NULL
|
|||||||
CREATE_OPTIONS #CO#
|
CREATE_OPTIONS #CO#
|
||||||
TABLE_COMMENT
|
TABLE_COMMENT
|
||||||
SELECT * FROM information_schema.tables
|
SELECT * FROM information_schema.tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema')
|
||||||
|
AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA db_datadict
|
TABLE_SCHEMA db_datadict
|
||||||
TABLE_NAME v1
|
TABLE_NAME v1
|
||||||
@ -3537,90 +3450,6 @@ CREATE_OPTIONS
|
|||||||
TABLE_COMMENT User defined functions
|
TABLE_COMMENT User defined functions
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA mysql
|
TABLE_SCHEMA mysql
|
||||||
TABLE_NAME help_category
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help categories
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_keyword
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help keywords
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_relation
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT keyword-topic relation
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_topic
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Dynamic
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help topics
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME host
|
TABLE_NAME host
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MyISAM
|
ENGINE MyISAM
|
||||||
@ -4552,10 +4381,10 @@ COUNT(*)
|
|||||||
36
|
36
|
||||||
SELECT COUNT(*) FROM information_schema. collations ;
|
SELECT COUNT(*) FROM information_schema. collations ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
126
|
127
|
||||||
SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
|
SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
126
|
127
|
||||||
SELECT COUNT(*) FROM information_schema. routines ;
|
SELECT COUNT(*) FROM information_schema. routines ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
1
|
1
|
||||||
@ -4631,10 +4460,10 @@ utf8_esperanto_ci utf8
|
|||||||
utf8_estonian_ci utf8
|
utf8_estonian_ci utf8
|
||||||
select routine_definition from routines;
|
select routine_definition from routines;
|
||||||
routine_definition
|
routine_definition
|
||||||
select * from statistics group by index_name asc limit 0, 5;
|
select * from statistics where table_name not like 'help_%'
|
||||||
|
group by index_name asc limit 0, 5;
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
|
NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
|
select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
|
||||||
@ -4731,9 +4560,9 @@ NULL test latin1 latin1_swedish_ci NULL
|
|||||||
NULL test1 latin1 latin1_swedish_ci NULL
|
NULL test1 latin1 latin1_swedish_ci NULL
|
||||||
select distinct grantee from user_privileges;
|
select distinct grantee from user_privileges;
|
||||||
grantee
|
grantee
|
||||||
'root'@'localhost'
|
|
||||||
'root'@'<SERVER_NAME>'
|
|
||||||
'root'@'127.0.0.1'
|
'root'@'127.0.0.1'
|
||||||
|
'root'@'<SERVER_NAME>'
|
||||||
|
'root'@'localhost'
|
||||||
select all grantee from user_privileges order by grantee, privilege_type;
|
select all grantee from user_privileges order by grantee, privilege_type;
|
||||||
grantee
|
grantee
|
||||||
'root'@'127.0.0.1'
|
'root'@'127.0.0.1'
|
||||||
@ -6659,7 +6488,7 @@ Testcase 3.2.1.14:
|
|||||||
DROP DATABASE IF EXISTS db_datadict;
|
DROP DATABASE IF EXISTS db_datadict;
|
||||||
CREATE DATABASE db_datadict;
|
CREATE DATABASE db_datadict;
|
||||||
USE db_datadict;
|
USE db_datadict;
|
||||||
create table res_t_401014(f1 char(10), f2 text(25), f3 int);
|
create table res_t_401014(f1 char(10), f2 varchar(25), f3 int);
|
||||||
create view res_v_401014 as select * from res_t_401014;
|
create view res_v_401014 as select * from res_t_401014;
|
||||||
create procedure sp_6_401014() select 'db_datadict';
|
create procedure sp_6_401014() select 'db_datadict';
|
||||||
create function fn_6_401014() returns int return 0;
|
create function fn_6_401014() returns int return 0;
|
||||||
@ -6682,10 +6511,10 @@ from information_schema.columns
|
|||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
||||||
NULL db_datadict res_t_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
NULL db_datadict res_t_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
NULL db_datadict res_v_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_v_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
select table_schema, table_name, is_updatable
|
select table_schema, table_name, is_updatable
|
||||||
from information_schema.views
|
from information_schema.views
|
||||||
@ -6798,7 +6627,7 @@ WHERE trigger_schema LIKE 'db_datadict%';
|
|||||||
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
||||||
use db_datadict;
|
use db_datadict;
|
||||||
alter table res_t_401014 change f1 ff1 int;
|
alter table res_t_401014 change f1 ff1 int;
|
||||||
alter table res_t_401014 engine = innodb;
|
alter table res_t_401014 engine = MEMORY;
|
||||||
alter table res_t_401014 change f3 f3_new bigint;
|
alter table res_t_401014 change f3 f3_new bigint;
|
||||||
alter view res_v_401014 as select ff1 from res_t_401014;
|
alter view res_v_401014 as select ff1 from res_t_401014;
|
||||||
alter procedure sp_6_401014 sql security invoker;
|
alter procedure sp_6_401014 sql security invoker;
|
||||||
@ -6816,14 +6645,14 @@ select table_catalog, table_schema, engine
|
|||||||
from information_schema.tables
|
from information_schema.tables
|
||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
table_catalog table_schema engine
|
table_catalog table_schema engine
|
||||||
NULL db_datadict InnoDB
|
NULL db_datadict MEMORY
|
||||||
NULL db_datadict NULL
|
NULL db_datadict NULL
|
||||||
select *
|
select *
|
||||||
from information_schema.columns
|
from information_schema.columns
|
||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
||||||
NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
|
NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
select table_schema, table_name, is_updatable
|
select table_schema, table_name, is_updatable
|
||||||
@ -7411,6 +7240,7 @@ utf8_roman_ci utf8
|
|||||||
utf8_persian_ci utf8
|
utf8_persian_ci utf8
|
||||||
utf8_esperanto_ci utf8
|
utf8_esperanto_ci utf8
|
||||||
utf8_hungarian_ci utf8
|
utf8_hungarian_ci utf8
|
||||||
|
utf8_general_cs utf8
|
||||||
ucs2_general_ci ucs2
|
ucs2_general_ci ucs2
|
||||||
ucs2_bin ucs2
|
ucs2_bin ucs2
|
||||||
ucs2_unicode_ci ucs2
|
ucs2_unicode_ci ucs2
|
||||||
@ -8042,6 +7872,7 @@ utf8_roman_ci
|
|||||||
utf8_persian_ci
|
utf8_persian_ci
|
||||||
utf8_esperanto_ci
|
utf8_esperanto_ci
|
||||||
utf8_hungarian_ci
|
utf8_hungarian_ci
|
||||||
|
utf8_general_cs
|
||||||
ucs2_general_ci
|
ucs2_general_ci
|
||||||
ucs2_bin
|
ucs2_bin
|
||||||
ucs2_unicode_ci
|
ucs2_unicode_ci
|
||||||
@ -8406,6 +8237,7 @@ utf8_roman_ci utf8 207 Yes 8
|
|||||||
utf8_persian_ci utf8 208 Yes 8
|
utf8_persian_ci utf8 208 Yes 8
|
||||||
utf8_esperanto_ci utf8 209 Yes 8
|
utf8_esperanto_ci utf8 209 Yes 8
|
||||||
utf8_hungarian_ci utf8 210 Yes 8
|
utf8_hungarian_ci utf8 210 Yes 8
|
||||||
|
utf8_general_cs utf8 254 Yes 1
|
||||||
ucs2_general_ci ucs2 35 Yes Yes 1
|
ucs2_general_ci ucs2 35 Yes Yes 1
|
||||||
ucs2_bin ucs2 90 Yes 1
|
ucs2_bin ucs2 90 Yes 1
|
||||||
ucs2_unicode_ci ucs2 128 Yes 8
|
ucs2_unicode_ci ucs2 128 Yes 8
|
||||||
@ -8567,6 +8399,7 @@ utf8_roman_ci utf8
|
|||||||
utf8_persian_ci utf8
|
utf8_persian_ci utf8
|
||||||
utf8_esperanto_ci utf8
|
utf8_esperanto_ci utf8
|
||||||
utf8_hungarian_ci utf8
|
utf8_hungarian_ci utf8
|
||||||
|
utf8_general_cs utf8
|
||||||
ucs2_general_ci ucs2
|
ucs2_general_ci ucs2
|
||||||
ucs2_bin ucs2
|
ucs2_bin ucs2
|
||||||
ucs2_unicode_ci ucs2
|
ucs2_unicode_ci ucs2
|
||||||
@ -12140,7 +11973,7 @@ NULL information_schema TRIGGERS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #M
|
|||||||
NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 0 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 0 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
||||||
NULL information_schema VIEWS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
NULL information_schema VIEWS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
||||||
SELECT * FROM information_schema.tables
|
SELECT * FROM information_schema.tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema') AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
||||||
NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
||||||
NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
||||||
@ -12149,10 +11982,6 @@ NULL db_datadict v3 VIEW NULL NULL NULL NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYY
|
|||||||
NULL mysql columns_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Column privileges
|
NULL mysql columns_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Column privileges
|
||||||
NULL mysql db BASE TABLE MyISAM 10 Fixed 3 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Database privileges
|
NULL mysql db BASE TABLE MyISAM 10 Fixed 3 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Database privileges
|
||||||
NULL mysql func BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL User defined functions
|
NULL mysql func BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL User defined functions
|
||||||
NULL mysql help_category BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help categories
|
|
||||||
NULL mysql help_keyword BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help keywords
|
|
||||||
NULL mysql help_relation BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL keyword-topic relation
|
|
||||||
NULL mysql help_topic BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help topics
|
|
||||||
NULL mysql host BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Host privileges; Merged with database privileges
|
NULL mysql host BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Host privileges; Merged with database privileges
|
||||||
NULL mysql proc BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Stored Procedures
|
NULL mysql proc BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Stored Procedures
|
||||||
NULL mysql procs_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Procedure privileges
|
NULL mysql procs_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Procedure privileges
|
||||||
@ -12371,7 +12200,8 @@ TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_
|
|||||||
|
|
||||||
root@localhost db_datadict_2
|
root@localhost db_datadict_2
|
||||||
REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
|
REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
|
||||||
SELECT * FROM information_schema.statistics;
|
SELECT * FROM information_schema.statistics
|
||||||
|
WHERE NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
|
NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
|
||||||
NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
|
NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
|
||||||
@ -12391,14 +12221,6 @@ NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
|||||||
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
||||||
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
||||||
|
@ -10,8 +10,9 @@
|
|||||||
. *__datadict.test are started. This can be a result of showing e.g. maximum
|
. *__datadict.test are started. This can be a result of showing e.g. maximum
|
||||||
. values of the number of rows of tables.
|
. values of the number of rows of tables.
|
||||||
.
|
.
|
||||||
. This .result file has been checked OK with Linux 5.0.23-bk,
|
. This .result file has been checked OK with Linux 5.0.48,
|
||||||
. ChangeSet@1.2211, 2006-06-28 10:11:43-07:00.
|
. build tree ChangeSet@1.2477.6.3, 2007-07-30
|
||||||
|
. except that the not fixed Bug#30020 causes a difference.
|
||||||
.
|
.
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -791,7 +792,8 @@ CHECKSUM NULL
|
|||||||
CREATE_OPTIONS #CO#
|
CREATE_OPTIONS #CO#
|
||||||
TABLE_COMMENT
|
TABLE_COMMENT
|
||||||
SELECT * FROM tables
|
SELECT * FROM tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema')
|
||||||
|
AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA db_datadict
|
TABLE_SCHEMA db_datadict
|
||||||
TABLE_NAME v1
|
TABLE_NAME v1
|
||||||
@ -920,90 +922,6 @@ CREATE_OPTIONS
|
|||||||
TABLE_COMMENT User defined functions
|
TABLE_COMMENT User defined functions
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA mysql
|
TABLE_SCHEMA mysql
|
||||||
TABLE_NAME help_category
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help categories
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_keyword
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help keywords
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_relation
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT keyword-topic relation
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_topic
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Dynamic
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help topics
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME host
|
TABLE_NAME host
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MyISAM
|
ENGINE MyISAM
|
||||||
@ -2522,7 +2440,7 @@ cp932 cp932_japanese_ci SJIS for Windows Japanese 2
|
|||||||
eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
|
eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
|
||||||
select sum(id) from collations;
|
select sum(id) from collations;
|
||||||
sum(id)
|
sum(id)
|
||||||
10741
|
10995
|
||||||
select collation_name, character_set_name into @x,@y
|
select collation_name, character_set_name into @x,@y
|
||||||
from collation_character_set_applicability limit 1;
|
from collation_character_set_applicability limit 1;
|
||||||
select @x, @y;
|
select @x, @y;
|
||||||
@ -2536,7 +2454,8 @@ END NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh
|
|||||||
select count(*) from routines;
|
select count(*) from routines;
|
||||||
count(*)
|
count(*)
|
||||||
1
|
1
|
||||||
select * from statistics;
|
select * from statistics
|
||||||
|
where not (table_schema = 'mysql' and table_name like 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
||||||
@ -2548,14 +2467,6 @@ NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
|||||||
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
||||||
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
||||||
@ -2764,7 +2675,8 @@ NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
|
|||||||
select count(*) as max_recs from key_column_usage;
|
select count(*) as max_recs from key_column_usage;
|
||||||
max_recs
|
max_recs
|
||||||
40
|
40
|
||||||
select max(cardinality) from statistics;
|
select max(cardinality) from statistics
|
||||||
|
where not (table_schema = 'mysql' and table_name like 'help_%');
|
||||||
max(cardinality)
|
max(cardinality)
|
||||||
393
|
393
|
||||||
select concat("View '",
|
select concat("View '",
|
||||||
@ -3391,7 +3303,8 @@ CHECKSUM NULL
|
|||||||
CREATE_OPTIONS #CO#
|
CREATE_OPTIONS #CO#
|
||||||
TABLE_COMMENT
|
TABLE_COMMENT
|
||||||
SELECT * FROM information_schema.tables
|
SELECT * FROM information_schema.tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema')
|
||||||
|
AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA db_datadict
|
TABLE_SCHEMA db_datadict
|
||||||
TABLE_NAME v1
|
TABLE_NAME v1
|
||||||
@ -3520,90 +3433,6 @@ CREATE_OPTIONS
|
|||||||
TABLE_COMMENT User defined functions
|
TABLE_COMMENT User defined functions
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA mysql
|
TABLE_SCHEMA mysql
|
||||||
TABLE_NAME help_category
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help categories
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_keyword
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help keywords
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_relation
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT keyword-topic relation
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_topic
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Dynamic
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help topics
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME host
|
TABLE_NAME host
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MyISAM
|
ENGINE MyISAM
|
||||||
@ -4535,10 +4364,10 @@ COUNT(*)
|
|||||||
36
|
36
|
||||||
SELECT COUNT(*) FROM information_schema. collations ;
|
SELECT COUNT(*) FROM information_schema. collations ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
126
|
127
|
||||||
SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
|
SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
126
|
127
|
||||||
SELECT COUNT(*) FROM information_schema. routines ;
|
SELECT COUNT(*) FROM information_schema. routines ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
1
|
1
|
||||||
@ -4614,10 +4443,10 @@ utf8_esperanto_ci utf8
|
|||||||
utf8_estonian_ci utf8
|
utf8_estonian_ci utf8
|
||||||
select routine_definition from routines;
|
select routine_definition from routines;
|
||||||
routine_definition
|
routine_definition
|
||||||
select * from statistics group by index_name asc limit 0, 5;
|
select * from statistics where table_name not like 'help_%'
|
||||||
|
group by index_name asc limit 0, 5;
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
|
NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
|
select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
|
||||||
@ -4714,9 +4543,9 @@ NULL test latin1 latin1_swedish_ci NULL
|
|||||||
NULL test1 latin1 latin1_swedish_ci NULL
|
NULL test1 latin1 latin1_swedish_ci NULL
|
||||||
select distinct grantee from user_privileges;
|
select distinct grantee from user_privileges;
|
||||||
grantee
|
grantee
|
||||||
'root'@'localhost'
|
|
||||||
'root'@'<SERVER_NAME>'
|
|
||||||
'root'@'127.0.0.1'
|
'root'@'127.0.0.1'
|
||||||
|
'root'@'<SERVER_NAME>'
|
||||||
|
'root'@'localhost'
|
||||||
select all grantee from user_privileges order by grantee, privilege_type;
|
select all grantee from user_privileges order by grantee, privilege_type;
|
||||||
grantee
|
grantee
|
||||||
'root'@'127.0.0.1'
|
'root'@'127.0.0.1'
|
||||||
@ -6642,7 +6471,7 @@ Testcase 3.2.1.14:
|
|||||||
DROP DATABASE IF EXISTS db_datadict;
|
DROP DATABASE IF EXISTS db_datadict;
|
||||||
CREATE DATABASE db_datadict;
|
CREATE DATABASE db_datadict;
|
||||||
USE db_datadict;
|
USE db_datadict;
|
||||||
create table res_t_401014(f1 char(10), f2 text(25), f3 int);
|
create table res_t_401014(f1 char(10), f2 varchar(25), f3 int);
|
||||||
create view res_v_401014 as select * from res_t_401014;
|
create view res_v_401014 as select * from res_t_401014;
|
||||||
create procedure sp_6_401014() select 'db_datadict';
|
create procedure sp_6_401014() select 'db_datadict';
|
||||||
create function fn_6_401014() returns int return 0;
|
create function fn_6_401014() returns int return 0;
|
||||||
@ -6665,10 +6494,10 @@ from information_schema.columns
|
|||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
||||||
NULL db_datadict res_t_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
NULL db_datadict res_t_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
NULL db_datadict res_v_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_v_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
select table_schema, table_name, is_updatable
|
select table_schema, table_name, is_updatable
|
||||||
from information_schema.views
|
from information_schema.views
|
||||||
@ -6781,7 +6610,7 @@ WHERE trigger_schema LIKE 'db_datadict%';
|
|||||||
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
||||||
use db_datadict;
|
use db_datadict;
|
||||||
alter table res_t_401014 change f1 ff1 int;
|
alter table res_t_401014 change f1 ff1 int;
|
||||||
alter table res_t_401014 engine = innodb;
|
alter table res_t_401014 engine = MyISAM;
|
||||||
alter table res_t_401014 change f3 f3_new bigint;
|
alter table res_t_401014 change f3 f3_new bigint;
|
||||||
alter view res_v_401014 as select ff1 from res_t_401014;
|
alter view res_v_401014 as select ff1 from res_t_401014;
|
||||||
alter procedure sp_6_401014 sql security invoker;
|
alter procedure sp_6_401014 sql security invoker;
|
||||||
@ -6799,14 +6628,14 @@ select table_catalog, table_schema, engine
|
|||||||
from information_schema.tables
|
from information_schema.tables
|
||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
table_catalog table_schema engine
|
table_catalog table_schema engine
|
||||||
NULL db_datadict InnoDB
|
NULL db_datadict MyISAM
|
||||||
NULL db_datadict NULL
|
NULL db_datadict NULL
|
||||||
select *
|
select *
|
||||||
from information_schema.columns
|
from information_schema.columns
|
||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
||||||
NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
|
NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
select table_schema, table_name, is_updatable
|
select table_schema, table_name, is_updatable
|
||||||
@ -7394,6 +7223,7 @@ utf8_roman_ci utf8
|
|||||||
utf8_persian_ci utf8
|
utf8_persian_ci utf8
|
||||||
utf8_esperanto_ci utf8
|
utf8_esperanto_ci utf8
|
||||||
utf8_hungarian_ci utf8
|
utf8_hungarian_ci utf8
|
||||||
|
utf8_general_cs utf8
|
||||||
ucs2_general_ci ucs2
|
ucs2_general_ci ucs2
|
||||||
ucs2_bin ucs2
|
ucs2_bin ucs2
|
||||||
ucs2_unicode_ci ucs2
|
ucs2_unicode_ci ucs2
|
||||||
@ -8010,6 +7840,7 @@ utf8_roman_ci
|
|||||||
utf8_persian_ci
|
utf8_persian_ci
|
||||||
utf8_esperanto_ci
|
utf8_esperanto_ci
|
||||||
utf8_hungarian_ci
|
utf8_hungarian_ci
|
||||||
|
utf8_general_cs
|
||||||
ucs2_general_ci
|
ucs2_general_ci
|
||||||
ucs2_bin
|
ucs2_bin
|
||||||
ucs2_unicode_ci
|
ucs2_unicode_ci
|
||||||
@ -8374,6 +8205,7 @@ utf8_roman_ci utf8 207 Yes 8
|
|||||||
utf8_persian_ci utf8 208 Yes 8
|
utf8_persian_ci utf8 208 Yes 8
|
||||||
utf8_esperanto_ci utf8 209 Yes 8
|
utf8_esperanto_ci utf8 209 Yes 8
|
||||||
utf8_hungarian_ci utf8 210 Yes 8
|
utf8_hungarian_ci utf8 210 Yes 8
|
||||||
|
utf8_general_cs utf8 254 Yes 1
|
||||||
ucs2_general_ci ucs2 35 Yes Yes 1
|
ucs2_general_ci ucs2 35 Yes Yes 1
|
||||||
ucs2_bin ucs2 90 Yes 1
|
ucs2_bin ucs2 90 Yes 1
|
||||||
ucs2_unicode_ci ucs2 128 Yes 8
|
ucs2_unicode_ci ucs2 128 Yes 8
|
||||||
@ -8535,6 +8367,7 @@ utf8_roman_ci utf8
|
|||||||
utf8_persian_ci utf8
|
utf8_persian_ci utf8
|
||||||
utf8_esperanto_ci utf8
|
utf8_esperanto_ci utf8
|
||||||
utf8_hungarian_ci utf8
|
utf8_hungarian_ci utf8
|
||||||
|
utf8_general_cs utf8
|
||||||
ucs2_general_ci ucs2
|
ucs2_general_ci ucs2
|
||||||
ucs2_bin ucs2
|
ucs2_bin ucs2
|
||||||
ucs2_unicode_ci ucs2
|
ucs2_unicode_ci ucs2
|
||||||
@ -12038,7 +11871,7 @@ NULL information_schema TRIGGERS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #M
|
|||||||
NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 0 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 0 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
||||||
NULL information_schema VIEWS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
NULL information_schema VIEWS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
||||||
SELECT * FROM information_schema.tables
|
SELECT * FROM information_schema.tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema') AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
||||||
NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
||||||
NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
||||||
@ -12047,10 +11880,6 @@ NULL db_datadict v3 VIEW NULL NULL NULL NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYY
|
|||||||
NULL mysql columns_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Column privileges
|
NULL mysql columns_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Column privileges
|
||||||
NULL mysql db BASE TABLE MyISAM 10 Fixed 3 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Database privileges
|
NULL mysql db BASE TABLE MyISAM 10 Fixed 3 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Database privileges
|
||||||
NULL mysql func BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL User defined functions
|
NULL mysql func BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL User defined functions
|
||||||
NULL mysql help_category BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help categories
|
|
||||||
NULL mysql help_keyword BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help keywords
|
|
||||||
NULL mysql help_relation BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL keyword-topic relation
|
|
||||||
NULL mysql help_topic BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help topics
|
|
||||||
NULL mysql host BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Host privileges; Merged with database privileges
|
NULL mysql host BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Host privileges; Merged with database privileges
|
||||||
NULL mysql proc BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Stored Procedures
|
NULL mysql proc BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Stored Procedures
|
||||||
NULL mysql procs_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Procedure privileges
|
NULL mysql procs_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Procedure privileges
|
||||||
@ -12269,7 +12098,8 @@ TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_
|
|||||||
|
|
||||||
root@localhost db_datadict_2
|
root@localhost db_datadict_2
|
||||||
REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
|
REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
|
||||||
SELECT * FROM information_schema.statistics;
|
SELECT * FROM information_schema.statistics
|
||||||
|
WHERE NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
|
NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
|
||||||
NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
|
NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
|
||||||
@ -12289,14 +12119,6 @@ NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
|||||||
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
||||||
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
||||||
|
@ -10,8 +10,9 @@
|
|||||||
. *__datadict.test are started. This can be a result of showing e.g. maximum
|
. *__datadict.test are started. This can be a result of showing e.g. maximum
|
||||||
. values of the number of rows of tables.
|
. values of the number of rows of tables.
|
||||||
.
|
.
|
||||||
. This .result file has been checked OK with Linux 5.0.23-bk,
|
. This .result file has been checked OK with Linux 5.0.48,
|
||||||
. ChangeSet@1.2211, 2006-06-28 10:11:43-07:00.
|
. build tree ChangeSet@1.2477.6.3, 2007-07-30
|
||||||
|
. except that the not fixed Bug#30020 causes a difference.
|
||||||
.
|
.
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
@ -821,7 +822,8 @@ CHECKSUM NULL
|
|||||||
CREATE_OPTIONS #CO#
|
CREATE_OPTIONS #CO#
|
||||||
TABLE_COMMENT
|
TABLE_COMMENT
|
||||||
SELECT * FROM tables
|
SELECT * FROM tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema')
|
||||||
|
AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA db_datadict
|
TABLE_SCHEMA db_datadict
|
||||||
TABLE_NAME v1
|
TABLE_NAME v1
|
||||||
@ -950,90 +952,6 @@ CREATE_OPTIONS
|
|||||||
TABLE_COMMENT User defined functions
|
TABLE_COMMENT User defined functions
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA mysql
|
TABLE_SCHEMA mysql
|
||||||
TABLE_NAME help_category
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help categories
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_keyword
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help keywords
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_relation
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT keyword-topic relation
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_topic
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Dynamic
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help topics
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME host
|
TABLE_NAME host
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MyISAM
|
ENGINE MyISAM
|
||||||
@ -2592,7 +2510,7 @@ cp932 cp932_japanese_ci SJIS for Windows Japanese 2
|
|||||||
eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
|
eucjpms eucjpms_japanese_ci UJIS for Windows Japanese 3
|
||||||
select sum(id) from collations;
|
select sum(id) from collations;
|
||||||
sum(id)
|
sum(id)
|
||||||
10741
|
10995
|
||||||
select collation_name, character_set_name into @x,@y
|
select collation_name, character_set_name into @x,@y
|
||||||
from collation_character_set_applicability limit 1;
|
from collation_character_set_applicability limit 1;
|
||||||
select @x, @y;
|
select @x, @y;
|
||||||
@ -2606,7 +2524,8 @@ END NULL NULL SQL NO CONTAINS SQL NULL DEFINER YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh
|
|||||||
select count(*) from routines;
|
select count(*) from routines;
|
||||||
count(*)
|
count(*)
|
||||||
1
|
1
|
||||||
select * from statistics;
|
select * from statistics
|
||||||
|
where not (table_schema = 'mysql' and table_name like 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
||||||
@ -2618,14 +2537,6 @@ NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
|||||||
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
||||||
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
||||||
@ -2834,7 +2745,8 @@ NULL mysql PRIMARY NULL mysql user User 2 NULL NULL NULL NULL
|
|||||||
select count(*) as max_recs from key_column_usage;
|
select count(*) as max_recs from key_column_usage;
|
||||||
max_recs
|
max_recs
|
||||||
40
|
40
|
||||||
select max(cardinality) from statistics;
|
select max(cardinality) from statistics
|
||||||
|
where not (table_schema = 'mysql' and table_name like 'help_%');
|
||||||
max(cardinality)
|
max(cardinality)
|
||||||
393
|
393
|
||||||
select concat("View '",
|
select concat("View '",
|
||||||
@ -3461,7 +3373,8 @@ CHECKSUM NULL
|
|||||||
CREATE_OPTIONS #CO#
|
CREATE_OPTIONS #CO#
|
||||||
TABLE_COMMENT
|
TABLE_COMMENT
|
||||||
SELECT * FROM information_schema.tables
|
SELECT * FROM information_schema.tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema')
|
||||||
|
AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA db_datadict
|
TABLE_SCHEMA db_datadict
|
||||||
TABLE_NAME v1
|
TABLE_NAME v1
|
||||||
@ -3590,90 +3503,6 @@ CREATE_OPTIONS
|
|||||||
TABLE_COMMENT User defined functions
|
TABLE_COMMENT User defined functions
|
||||||
TABLE_CATALOG NULL
|
TABLE_CATALOG NULL
|
||||||
TABLE_SCHEMA mysql
|
TABLE_SCHEMA mysql
|
||||||
TABLE_NAME help_category
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help categories
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_keyword
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help keywords
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_relation
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Fixed
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT keyword-topic relation
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME help_topic
|
|
||||||
TABLE_TYPE BASE TABLE
|
|
||||||
ENGINE MyISAM
|
|
||||||
VERSION 10
|
|
||||||
ROW_FORMAT Dynamic
|
|
||||||
TABLE_ROWS 0
|
|
||||||
AVG_ROW_LENGTH #ARL#
|
|
||||||
DATA_LENGTH #DL#
|
|
||||||
MAX_DATA_LENGTH #MDL#
|
|
||||||
INDEX_LENGTH #IL#
|
|
||||||
DATA_FREE #DF#
|
|
||||||
AUTO_INCREMENT NULL
|
|
||||||
CREATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
UPDATE_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
CHECK_TIME YYYY-MM-DD hh:mm:ss
|
|
||||||
TABLE_COLLATION utf8_general_ci
|
|
||||||
CHECKSUM NULL
|
|
||||||
CREATE_OPTIONS
|
|
||||||
TABLE_COMMENT help topics
|
|
||||||
TABLE_CATALOG NULL
|
|
||||||
TABLE_SCHEMA mysql
|
|
||||||
TABLE_NAME host
|
TABLE_NAME host
|
||||||
TABLE_TYPE BASE TABLE
|
TABLE_TYPE BASE TABLE
|
||||||
ENGINE MyISAM
|
ENGINE MyISAM
|
||||||
@ -4605,10 +4434,10 @@ COUNT(*)
|
|||||||
36
|
36
|
||||||
SELECT COUNT(*) FROM information_schema. collations ;
|
SELECT COUNT(*) FROM information_schema. collations ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
126
|
127
|
||||||
SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
|
SELECT COUNT(*) FROM information_schema. collation_character_set_applicability ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
126
|
127
|
||||||
SELECT COUNT(*) FROM information_schema. routines ;
|
SELECT COUNT(*) FROM information_schema. routines ;
|
||||||
COUNT(*)
|
COUNT(*)
|
||||||
1
|
1
|
||||||
@ -4684,10 +4513,10 @@ utf8_esperanto_ci utf8
|
|||||||
utf8_estonian_ci utf8
|
utf8_estonian_ci utf8
|
||||||
select routine_definition from routines;
|
select routine_definition from routines;
|
||||||
routine_definition
|
routine_definition
|
||||||
select * from statistics group by index_name asc limit 0, 5;
|
select * from statistics where table_name not like 'help_%'
|
||||||
|
group by index_name asc limit 0, 5;
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
|
NULL mysql procs_priv 1 mysql Grantor 1 Grantor A NULL NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql columns_priv 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
|
select concat(table_schema, ', ', table_name, ', ', view_definition) view_info
|
||||||
@ -4784,9 +4613,9 @@ NULL test latin1 latin1_swedish_ci NULL
|
|||||||
NULL test1 latin1 latin1_swedish_ci NULL
|
NULL test1 latin1 latin1_swedish_ci NULL
|
||||||
select distinct grantee from user_privileges;
|
select distinct grantee from user_privileges;
|
||||||
grantee
|
grantee
|
||||||
'root'@'localhost'
|
|
||||||
'root'@'<SERVER_NAME>'
|
|
||||||
'root'@'127.0.0.1'
|
'root'@'127.0.0.1'
|
||||||
|
'root'@'<SERVER_NAME>'
|
||||||
|
'root'@'localhost'
|
||||||
select all grantee from user_privileges order by grantee, privilege_type;
|
select all grantee from user_privileges order by grantee, privilege_type;
|
||||||
grantee
|
grantee
|
||||||
'root'@'127.0.0.1'
|
'root'@'127.0.0.1'
|
||||||
@ -6712,7 +6541,7 @@ Testcase 3.2.1.14:
|
|||||||
DROP DATABASE IF EXISTS db_datadict;
|
DROP DATABASE IF EXISTS db_datadict;
|
||||||
CREATE DATABASE db_datadict;
|
CREATE DATABASE db_datadict;
|
||||||
USE db_datadict;
|
USE db_datadict;
|
||||||
create table res_t_401014(f1 char(10), f2 text(25), f3 int);
|
create table res_t_401014(f1 char(10), f2 varchar(25), f3 int);
|
||||||
create view res_v_401014 as select * from res_t_401014;
|
create view res_v_401014 as select * from res_t_401014;
|
||||||
create procedure sp_6_401014() select 'db_datadict';
|
create procedure sp_6_401014() select 'db_datadict';
|
||||||
create function fn_6_401014() returns int return 0;
|
create function fn_6_401014() returns int return 0;
|
||||||
@ -6735,10 +6564,10 @@ from information_schema.columns
|
|||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
||||||
NULL db_datadict res_t_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
NULL db_datadict res_t_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_t_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
NULL db_datadict res_v_401014 f1 1 NULL YES char 10 10 NULL NULL latin1 latin1_swedish_ci char(10) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_v_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_v_401014 f3 3 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
select table_schema, table_name, is_updatable
|
select table_schema, table_name, is_updatable
|
||||||
from information_schema.views
|
from information_schema.views
|
||||||
@ -6851,7 +6680,7 @@ WHERE trigger_schema LIKE 'db_datadict%';
|
|||||||
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
TRIGGER_CATALOG TRIGGER_SCHEMA TRIGGER_NAME EVENT_MANIPULATION EVENT_OBJECT_CATALOG EVENT_OBJECT_SCHEMA EVENT_OBJECT_TABLE ACTION_ORDER ACTION_CONDITION ACTION_STATEMENT ACTION_ORIENTATION ACTION_TIMING ACTION_REFERENCE_OLD_TABLE ACTION_REFERENCE_NEW_TABLE ACTION_REFERENCE_OLD_ROW ACTION_REFERENCE_NEW_ROW CREATED SQL_MODE DEFINER
|
||||||
use db_datadict;
|
use db_datadict;
|
||||||
alter table res_t_401014 change f1 ff1 int;
|
alter table res_t_401014 change f1 ff1 int;
|
||||||
alter table res_t_401014 engine = innodb;
|
alter table res_t_401014 engine = MEMORY;
|
||||||
alter table res_t_401014 change f3 f3_new bigint;
|
alter table res_t_401014 change f3 f3_new bigint;
|
||||||
alter view res_v_401014 as select ff1 from res_t_401014;
|
alter view res_v_401014 as select ff1 from res_t_401014;
|
||||||
alter procedure sp_6_401014 sql security invoker;
|
alter procedure sp_6_401014 sql security invoker;
|
||||||
@ -6869,14 +6698,14 @@ select table_catalog, table_schema, engine
|
|||||||
from information_schema.tables
|
from information_schema.tables
|
||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
table_catalog table_schema engine
|
table_catalog table_schema engine
|
||||||
NULL db_datadict InnoDB
|
NULL db_datadict MEMORY
|
||||||
NULL db_datadict NULL
|
NULL db_datadict NULL
|
||||||
select *
|
select *
|
||||||
from information_schema.columns
|
from information_schema.columns
|
||||||
where table_schema like 'db_datadict%';
|
where table_schema like 'db_datadict%';
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME COLUMN_NAME ORDINAL_POSITION COLUMN_DEFAULT IS_NULLABLE DATA_TYPE CHARACTER_MAXIMUM_LENGTH CHARACTER_OCTET_LENGTH NUMERIC_PRECISION NUMERIC_SCALE CHARACTER_SET_NAME COLLATION_NAME COLUMN_TYPE COLUMN_KEY EXTRA PRIVILEGES COLUMN_COMMENT
|
||||||
NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_t_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f2 2 NULL YES tinytext 255 255 NULL NULL latin1 latin1_swedish_ci tinytext select,insert,update,references
|
NULL db_datadict res_t_401014 f2 2 NULL YES varchar 25 25 NULL NULL latin1 latin1_swedish_ci varchar(25) select,insert,update,references
|
||||||
NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
|
NULL db_datadict res_t_401014 f3_new 3 NULL YES bigint NULL NULL 19 0 NULL NULL bigint(20) select,insert,update,references
|
||||||
NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
NULL db_datadict res_v_401014 ff1 1 NULL YES int NULL NULL 10 0 NULL NULL int(11) select,insert,update,references
|
||||||
select table_schema, table_name, is_updatable
|
select table_schema, table_name, is_updatable
|
||||||
@ -7464,6 +7293,7 @@ utf8_roman_ci utf8
|
|||||||
utf8_persian_ci utf8
|
utf8_persian_ci utf8
|
||||||
utf8_esperanto_ci utf8
|
utf8_esperanto_ci utf8
|
||||||
utf8_hungarian_ci utf8
|
utf8_hungarian_ci utf8
|
||||||
|
utf8_general_cs utf8
|
||||||
ucs2_general_ci ucs2
|
ucs2_general_ci ucs2
|
||||||
ucs2_bin ucs2
|
ucs2_bin ucs2
|
||||||
ucs2_unicode_ci ucs2
|
ucs2_unicode_ci ucs2
|
||||||
@ -8112,6 +7942,7 @@ utf8_roman_ci
|
|||||||
utf8_persian_ci
|
utf8_persian_ci
|
||||||
utf8_esperanto_ci
|
utf8_esperanto_ci
|
||||||
utf8_hungarian_ci
|
utf8_hungarian_ci
|
||||||
|
utf8_general_cs
|
||||||
ucs2_general_ci
|
ucs2_general_ci
|
||||||
ucs2_bin
|
ucs2_bin
|
||||||
ucs2_unicode_ci
|
ucs2_unicode_ci
|
||||||
@ -8476,6 +8307,7 @@ utf8_roman_ci utf8 207 Yes 8
|
|||||||
utf8_persian_ci utf8 208 Yes 8
|
utf8_persian_ci utf8 208 Yes 8
|
||||||
utf8_esperanto_ci utf8 209 Yes 8
|
utf8_esperanto_ci utf8 209 Yes 8
|
||||||
utf8_hungarian_ci utf8 210 Yes 8
|
utf8_hungarian_ci utf8 210 Yes 8
|
||||||
|
utf8_general_cs utf8 254 Yes 1
|
||||||
ucs2_general_ci ucs2 35 Yes Yes 1
|
ucs2_general_ci ucs2 35 Yes Yes 1
|
||||||
ucs2_bin ucs2 90 Yes 1
|
ucs2_bin ucs2 90 Yes 1
|
||||||
ucs2_unicode_ci ucs2 128 Yes 8
|
ucs2_unicode_ci ucs2 128 Yes 8
|
||||||
@ -8637,6 +8469,7 @@ utf8_roman_ci utf8
|
|||||||
utf8_persian_ci utf8
|
utf8_persian_ci utf8
|
||||||
utf8_esperanto_ci utf8
|
utf8_esperanto_ci utf8
|
||||||
utf8_hungarian_ci utf8
|
utf8_hungarian_ci utf8
|
||||||
|
utf8_general_cs utf8
|
||||||
ucs2_general_ci ucs2
|
ucs2_general_ci ucs2
|
||||||
ucs2_bin ucs2
|
ucs2_bin ucs2
|
||||||
ucs2_unicode_ci ucs2
|
ucs2_unicode_ci ucs2
|
||||||
@ -12292,7 +12125,7 @@ NULL information_schema TRIGGERS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #M
|
|||||||
NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 0 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
NULL information_schema USER_PRIVILEGES SYSTEM VIEW MEMORY 0 Fixed NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
||||||
NULL information_schema VIEWS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
NULL information_schema VIEWS SYSTEM VIEW MyISAM 0 Dynamic NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL #CO#
|
||||||
SELECT * FROM information_schema.tables
|
SELECT * FROM information_schema.tables
|
||||||
WHERE NOT( table_schema = 'information_schema');
|
WHERE NOT( table_schema = 'information_schema') AND NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT
|
||||||
NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
NULL db_datadict tb1 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
||||||
NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
NULL db_datadict tb2 BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss latin1_swedish_ci NULL
|
||||||
@ -12301,10 +12134,6 @@ NULL db_datadict v3 VIEW NULL NULL NULL NULL #ARL# #DL# #MDL# #IL# #DF# NULL YYY
|
|||||||
NULL mysql columns_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Column privileges
|
NULL mysql columns_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Column privileges
|
||||||
NULL mysql db BASE TABLE MyISAM 10 Fixed 3 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Database privileges
|
NULL mysql db BASE TABLE MyISAM 10 Fixed 3 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Database privileges
|
||||||
NULL mysql func BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL User defined functions
|
NULL mysql func BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL User defined functions
|
||||||
NULL mysql help_category BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help categories
|
|
||||||
NULL mysql help_keyword BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help keywords
|
|
||||||
NULL mysql help_relation BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL keyword-topic relation
|
|
||||||
NULL mysql help_topic BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL help topics
|
|
||||||
NULL mysql host BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Host privileges; Merged with database privileges
|
NULL mysql host BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Host privileges; Merged with database privileges
|
||||||
NULL mysql proc BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Stored Procedures
|
NULL mysql proc BASE TABLE MyISAM 10 Dynamic 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_general_ci NULL Stored Procedures
|
||||||
NULL mysql procs_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Procedure privileges
|
NULL mysql procs_priv BASE TABLE MyISAM 10 Fixed 0 #ARL# #DL# #MDL# #IL# #DF# NULL YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss YYYY-MM-DD hh:mm:ss utf8_bin NULL Procedure privileges
|
||||||
@ -12523,7 +12352,8 @@ TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_
|
|||||||
|
|
||||||
root@localhost db_datadict_2
|
root@localhost db_datadict_2
|
||||||
REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
|
REVOKE SELECT ON db_datadict.tb_6_401402_1 FROM 'user_1'@'localhost';
|
||||||
SELECT * FROM information_schema.statistics;
|
SELECT * FROM information_schema.statistics
|
||||||
|
WHERE NOT (table_schema = 'mysql' AND table_name LIKE 'help_%');
|
||||||
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME NON_UNIQUE INDEX_SCHEMA INDEX_NAME SEQ_IN_INDEX COLUMN_NAME COLLATION CARDINALITY SUB_PART PACKED NULLABLE INDEX_TYPE COMMENT
|
||||||
NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
|
NULL db_datadict tb_6_401402_1 0 db_datadict PRIMARY 1 f1 A 0 NULL NULL BTREE
|
||||||
NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
|
NULL db_datadict tb_6_401402_1 1 db_datadict f2_ind 1 f2 A NULL NULL NULL YES BTREE
|
||||||
@ -12543,14 +12373,6 @@ NULL mysql db 0 mysql PRIMARY 2 Db A NULL NULL NULL BTREE
|
|||||||
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
NULL mysql db 0 mysql PRIMARY 3 User A 2 NULL NULL BTREE
|
||||||
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
NULL mysql db 1 mysql User 1 User A 1 NULL NULL BTREE
|
||||||
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
NULL mysql func 0 mysql PRIMARY 1 name A 0 NULL NULL BTREE
|
||||||
NULL mysql help_category 0 mysql PRIMARY 1 help_category_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_category 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql PRIMARY 1 help_keyword_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_keyword 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 1 help_keyword_id A NULL NULL NULL BTREE
|
|
||||||
NULL mysql help_relation 0 mysql PRIMARY 2 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql PRIMARY 1 help_topic_id A 0 NULL NULL BTREE
|
|
||||||
NULL mysql help_topic 0 mysql name 1 name A 0 NULL NULL BTREE
|
|
||||||
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 1 Host A NULL NULL NULL BTREE
|
||||||
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
NULL mysql host 0 mysql PRIMARY 2 Db A 0 NULL NULL BTREE
|
||||||
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
NULL mysql proc 0 mysql PRIMARY 1 db A NULL NULL NULL BTREE
|
||||||
|
73
mysql-test/suite/funcs_1/t/datadict_help_tables_build.test
Normal file
73
mysql-test/suite/funcs_1/t/datadict_help_tables_build.test
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
###### suite/funcs_1/t/datadict_help_tables_dev.test #####
|
||||||
|
#
|
||||||
|
# Check the information about the help tables within
|
||||||
|
# INFORMATION_SCHEMA.TABLES/INFORMATION_SCHEMA.STATISTICS
|
||||||
|
#
|
||||||
|
# Variant for use during build tests (non empty help tables)
|
||||||
|
#
|
||||||
|
# Creation:
|
||||||
|
# 2007-08-25 mleich Add this test as compensation for the
|
||||||
|
# checks removed within datadict_master.inc.
|
||||||
|
#
|
||||||
|
|
||||||
|
let $c_help_category= `SELECT COUNT(*) FROM mysql.help_category`;
|
||||||
|
let $c_help_keyword= `SELECT COUNT(*) FROM mysql.help_keyword`;
|
||||||
|
let $c_help_relation= `SELECT COUNT(*) FROM mysql.help_relation`;
|
||||||
|
let $c_help_topic= `SELECT COUNT(*) FROM mysql.help_topic`;
|
||||||
|
|
||||||
|
if (`SELECT $c_help_category + $c_help_keyword + $c_help_relation
|
||||||
|
+ $c_help_topic = 0`)
|
||||||
|
{
|
||||||
|
--skip # Test requires non empty help tables = Build test configuration
|
||||||
|
}
|
||||||
|
|
||||||
|
# We reach this point when we run on a configuration with at least one
|
||||||
|
# non empty help table.
|
||||||
|
# 2007-08 MySQL 5.0 row count of the help tables
|
||||||
|
# help_category help_keyword help_relation help_topic
|
||||||
|
# 36 395 809 466
|
||||||
|
# Let's assume for all help tables that their content never dramatic
|
||||||
|
# shrinks and do some plausibility checks.
|
||||||
|
let $limit_help_category = 30;
|
||||||
|
let $limit_help_keyword = 320;
|
||||||
|
let $limit_help_relation = 640;
|
||||||
|
let $limit_help_topic = 380;
|
||||||
|
if (`SELECT $c_help_category < $limit_help_category
|
||||||
|
OR $c_help_keyword < $limit_help_keyword
|
||||||
|
OR $c_help_relation < $limit_help_relation
|
||||||
|
OR $c_help_topic < $limit_help_topic`)
|
||||||
|
{
|
||||||
|
--echo # The row count within the help tables is unexepected small.
|
||||||
|
SELECT COUNT(*), 'exepected: >= $limit_help_category' FROM mysql.help_category;
|
||||||
|
SELECT COUNT(*), 'exepected: >= $limit_help_keyword' FROM mysql.help_keyword;
|
||||||
|
SELECT COUNT(*), 'exepected: >= $limit_help_relation' FROM mysql.help_relation;
|
||||||
|
SELECT COUNT(*), 'exepected: >= $limit_help_topic' FROM mysql.help_topic;
|
||||||
|
--echo # Either the current help table content (build problem? or
|
||||||
|
--echo # the expected minimum row count within this script is wrong.
|
||||||
|
--echo # Abort
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Enforce a static number of rows within the help tables.
|
||||||
|
let $limit= `SELECT $c_help_category - $limit_help_category`;
|
||||||
|
--replace_result $limit <number>
|
||||||
|
eval DELETE FROM mysql.help_category LIMIT $limit;
|
||||||
|
#
|
||||||
|
let $limit= `SELECT $c_help_keyword - $limit_help_keyword`;
|
||||||
|
--replace_result $limit <number>
|
||||||
|
eval DELETE FROM mysql.help_keyword LIMIT $limit;
|
||||||
|
#
|
||||||
|
let $limit= `SELECT $c_help_relation - $limit_help_relation`;
|
||||||
|
--replace_result $limit <number>
|
||||||
|
eval DELETE FROM mysql.help_relation LIMIT $limit;
|
||||||
|
#
|
||||||
|
let $limit= `SELECT $c_help_topic - $limit_help_topic`;
|
||||||
|
--replace_result $limit <number>
|
||||||
|
eval DELETE FROM mysql.help_topic LIMIT $limit;
|
||||||
|
|
||||||
|
|
||||||
|
--replace_column 9 "#ARL#" 10 "#DL#" 11 "#MDL#" 12 "#IL#" 13 "#DF#" 15 "YYYY-MM-DD hh:mm:ss" 16 "YYYY-MM-DD hh:mm:ss" 17 "YYYY-MM-DD hh:mm:ss"
|
||||||
|
SELECT * FROM INFORMATION_SCHEMA.TABLES
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
||||||
|
SELECT * FROM INFORMATION_SCHEMA.STATISTICS
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
27
mysql-test/suite/funcs_1/t/datadict_help_tables_dev.test
Normal file
27
mysql-test/suite/funcs_1/t/datadict_help_tables_dev.test
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
###### suite/funcs_1/t/datadict_help_tables_dev.test #####
|
||||||
|
#
|
||||||
|
# Check the information about the help tables within
|
||||||
|
# INFORMATION_SCHEMA.TABLES/INFORMATION_SCHEMA.STATISTICS
|
||||||
|
#
|
||||||
|
# Variant for use during development (empty help tables)
|
||||||
|
#
|
||||||
|
# Creation:
|
||||||
|
# 2007-08-25 mleich Add this test as compensation for the
|
||||||
|
# checks removed within datadict_master.inc.
|
||||||
|
#
|
||||||
|
|
||||||
|
let $c_help_category= `SELECT COUNT(*) FROM mysql.help_category`;
|
||||||
|
let $c_help_keyword= `SELECT COUNT(*) FROM mysql.help_keyword`;
|
||||||
|
let $c_help_relation= `SELECT COUNT(*) FROM mysql.help_relation`;
|
||||||
|
let $c_help_topic= `SELECT COUNT(*) FROM mysql.help_topic`;
|
||||||
|
if (`SELECT $c_help_category + $c_help_keyword + $c_help_relation
|
||||||
|
+ $c_help_topic > 0`)
|
||||||
|
{
|
||||||
|
--skip # Test requires empty help tables = Development test configuration
|
||||||
|
}
|
||||||
|
|
||||||
|
--replace_column 9 "#ARL#" 10 "#DL#" 11 "#MDL#" 12 "#IL#" 13 "#DF#" 15 "YYYY-MM-DD hh:mm:ss" 16 "YYYY-MM-DD hh:mm:ss" 17 "YYYY-MM-DD hh:mm:ss"
|
||||||
|
SELECT * FROM INFORMATION_SCHEMA.TABLES
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
||||||
|
SELECT * FROM INFORMATION_SCHEMA.STATISTICS
|
||||||
|
WHERE TABLE_SCHEMA = 'mysql' AND TABLE_NAME LIKE 'help_%';
|
@ -3,5 +3,9 @@
|
|||||||
--source include/have_innodb.inc
|
--source include/have_innodb.inc
|
||||||
|
|
||||||
let $engine_type= innodb;
|
let $engine_type= innodb;
|
||||||
|
# $OTHER_ENGINE_TYPE must be
|
||||||
|
# - <> $engine_type
|
||||||
|
# - all time available like MyISAM or MEMORY
|
||||||
|
let $OTHER_ENGINE_TYPE= MEMORY;
|
||||||
|
|
||||||
--source suite/funcs_1/datadict/datadict_master.inc
|
--source suite/funcs_1/datadict/datadict_master.inc
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
#### suite/funcs_1/t/datadict_memory.test
|
#### suite/funcs_1/t/datadict_memory.test
|
||||||
#
|
#
|
||||||
let $engine_type= memory;
|
let $engine_type= memory;
|
||||||
|
# $OTHER_ENGINE_TYPE must be
|
||||||
|
# - <> $engine_type
|
||||||
|
# - all time available like MyISAM or MEMORY
|
||||||
|
let $OTHER_ENGINE_TYPE= MyISAM;
|
||||||
|
|
||||||
--source suite/funcs_1/datadict/datadict_master.inc
|
--source suite/funcs_1/datadict/datadict_master.inc
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
#### suite/funcs_1/t/datadict_myisam.test
|
#### suite/funcs_1/t/datadict_myisam.test
|
||||||
#
|
#
|
||||||
|
|
||||||
let $engine_type= myisam;
|
let $engine_type= myisam;
|
||||||
|
# $OTHER_ENGINE_TYPE must be
|
||||||
|
# - <> $engine_type
|
||||||
|
# - all time available like MyISAM or MEMORY
|
||||||
|
let $OTHER_ENGINE_TYPE= MEMORY;
|
||||||
|
|
||||||
--source suite/funcs_1/datadict/datadict_master.inc
|
--source suite/funcs_1/datadict/datadict_master.inc
|
||||||
|
@ -1347,8 +1347,16 @@ SELECT * FROM t2;
|
|||||||
|
|
||||||
# Test INSERT DELAYED and wait until the table has one more record
|
# Test INSERT DELAYED and wait until the table has one more record
|
||||||
SELECT COUNT(auto) FROM t2;
|
SELECT COUNT(auto) FROM t2;
|
||||||
INSERT DELAYED INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily','');
|
INSERT DELAYED INTO t2 VALUES (99999,011403,37,'the','delayed','insert','');
|
||||||
while (`SELECT COUNT(auto)!=1214 FROM t2`)
|
|
||||||
|
# Insert another record since in Archive delayed values are only
|
||||||
|
# guaranteed to materialize based on either:
|
||||||
|
# 1) A new row showing up from a normal insert
|
||||||
|
# 2) A flush table has occurred.
|
||||||
|
INSERT INTO t2 VALUES (100000,000001,00,'after','delayed','insert','');
|
||||||
|
|
||||||
|
# Wait for the delayed insert to appear
|
||||||
|
while (`SELECT COUNT(auto)!=1215 FROM t2`)
|
||||||
{
|
{
|
||||||
sleep 0.1;
|
sleep 0.1;
|
||||||
}
|
}
|
||||||
@ -1357,7 +1365,7 @@ SELECT COUNT(auto) FROM t2;
|
|||||||
# Adding test for alter table
|
# Adding test for alter table
|
||||||
ALTER TABLE t2 DROP COLUMN fld6;
|
ALTER TABLE t2 DROP COLUMN fld6;
|
||||||
SHOW CREATE TABLE t2;
|
SHOW CREATE TABLE t2;
|
||||||
SELECT * from t2;
|
SELECT * from t2 WHERE auto != 100000;
|
||||||
#
|
#
|
||||||
# Cleanup, test is over
|
# Cleanup, test is over
|
||||||
#
|
#
|
||||||
|
@ -19,3 +19,36 @@ select 1 # The rest of the row will be ignored
|
|||||||
/* line with only comment */;
|
/* line with only comment */;
|
||||||
|
|
||||||
# End of 4.1 tests
|
# End of 4.1 tests
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#28779 (mysql_query() allows execution of statements with unbalanced
|
||||||
|
# comments)
|
||||||
|
#
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
|
drop table if exists table_28779;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
|
create table table_28779 (a int);
|
||||||
|
|
||||||
|
--error 1064
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*' AND b = 'bar';";
|
||||||
|
|
||||||
|
--error 1064
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*' AND b = 'bar';*";
|
||||||
|
|
||||||
|
--error 1064
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*! AND 2=2;";
|
||||||
|
|
||||||
|
--error 1064
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*! AND 2=2;*";
|
||||||
|
|
||||||
|
--error 1064
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*!98765' AND b = 'bar';";
|
||||||
|
|
||||||
|
--error 1064
|
||||||
|
prepare bar from "DELETE FROM table_28779 WHERE a = 7 OR 1=1/*!98765' AND b = 'bar';*";
|
||||||
|
|
||||||
|
drop table table_28779;
|
||||||
|
|
||||||
|
@ -173,8 +173,20 @@ delete from t1 where (@a:= f1) order by f1 limit 1;
|
|||||||
select @a;
|
select @a;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
|
||||||
|
# BUG#30385 "Server crash when deleting with order by and limit"
|
||||||
|
CREATE TABLE t1 (
|
||||||
|
`date` date ,
|
||||||
|
`time` time ,
|
||||||
|
`seq` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
PRIMARY KEY (`seq`),
|
||||||
|
KEY `seq` (`seq`),
|
||||||
|
KEY `time` (`time`),
|
||||||
|
KEY `date` (`date`)
|
||||||
|
);
|
||||||
|
DELETE FROM t1 ORDER BY date ASC, time ASC LIMIT 1;
|
||||||
|
drop table t1;
|
||||||
|
|
||||||
--echo End of 4.1 tests
|
--echo End of 4.1 tests
|
||||||
# End of 4.1 tests
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Test of multi-delete where we are not scanning the first table
|
# Test of multi-delete where we are not scanning the first table
|
||||||
@ -221,3 +233,47 @@ DELETE FROM t1 ORDER BY t2.x;
|
|||||||
DELETE FROM t1 ORDER BY (SELECT x);
|
DELETE FROM t1 ORDER BY (SELECT x);
|
||||||
|
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug #30234: Unexpected behavior using DELETE with AS and USING
|
||||||
|
# '
|
||||||
|
CREATE TABLE t1 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE t2 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE DATABASE db1;
|
||||||
|
CREATE TABLE db1.t1 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
INSERT INTO db1.t1 (a) SELECT * FROM t1;
|
||||||
|
|
||||||
|
CREATE DATABASE db2;
|
||||||
|
CREATE TABLE db2.t1 (
|
||||||
|
a INT
|
||||||
|
);
|
||||||
|
INSERT INTO db2.t1 (a) SELECT * FROM t2;
|
||||||
|
|
||||||
|
--error ER_PARSE_ERROR
|
||||||
|
DELETE FROM t1 alias USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
DELETE FROM alias USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
DELETE FROM t1, alias USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
--error ER_UNKNOWN_TABLE
|
||||||
|
DELETE FROM t1, t2 USING t1, t2 alias WHERE t1.a = alias.a;
|
||||||
|
--error ER_PARSE_ERROR
|
||||||
|
DELETE FROM db1.t1 alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
|
||||||
|
--error ER_UNKNOWN_TABLE
|
||||||
|
DELETE FROM alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
|
||||||
|
DELETE FROM db2.alias USING db1.t1, db2.t1 alias WHERE db1.t1.a = alias.a;
|
||||||
|
DELETE FROM t1 USING t1 WHERE a = 1;
|
||||||
|
SELECT * FROM t1;
|
||||||
|
--error ER_PARSE_ERROR
|
||||||
|
DELETE FROM t1 alias USING t1 alias WHERE a = 2;
|
||||||
|
SELECT * FROM t1;
|
||||||
|
|
||||||
|
DROP TABLE t1, t2;
|
||||||
|
DROP DATABASE db1;
|
||||||
|
DROP DATABASE db2;
|
||||||
|
@ -788,3 +788,30 @@ select * from t1 group by f1, f2;
|
|||||||
select t1.f1,t.* from t1, t1 t group by 1;
|
select t1.f1,t.* from t1, t1 t group by 1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
SET SQL_MODE = '';
|
SET SQL_MODE = '';
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#30596: GROUP BY optimization gives wrong result order
|
||||||
|
#
|
||||||
|
CREATE TABLE t1(
|
||||||
|
a INT,
|
||||||
|
b INT NOT NULL,
|
||||||
|
c INT NOT NULL,
|
||||||
|
d INT,
|
||||||
|
UNIQUE KEY (c,b)
|
||||||
|
);
|
||||||
|
|
||||||
|
INSERT INTO t1 VALUES (1,1,1,50), (1,2,3,40), (2,1,3,4);
|
||||||
|
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
EXPLAIN SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -441,3 +441,22 @@ handler t1 open;
|
|||||||
--echo --> client 1
|
--echo --> client 1
|
||||||
connection default;
|
connection default;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#30632 HANDLER read failure causes hang
|
||||||
|
#
|
||||||
|
--disable_warnings
|
||||||
|
drop table if exists t1;
|
||||||
|
--enable_warnings
|
||||||
|
create table t1 (a int);
|
||||||
|
handler t1 open as t1_alias;
|
||||||
|
--error 1176
|
||||||
|
handler t1_alias read a next;
|
||||||
|
--error 1054
|
||||||
|
handler t1_alias READ a next where inexistent > 0;
|
||||||
|
--error 1176
|
||||||
|
handler t1_alias read a next;
|
||||||
|
--error 1054
|
||||||
|
handler t1_alias READ a next where inexistent > 0;
|
||||||
|
handler t1_alias close;
|
||||||
|
drop table t1;
|
||||||
|
@ -1071,4 +1071,21 @@ connection default;
|
|||||||
drop user mysqltest_1@localhost;
|
drop user mysqltest_1@localhost;
|
||||||
drop database mysqltest;
|
drop database mysqltest;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#27747 database metadata doesn't return sufficient column default info
|
||||||
|
#
|
||||||
|
create table t1 (
|
||||||
|
f1 varchar(50),
|
||||||
|
f2 varchar(50) not null,
|
||||||
|
f3 varchar(50) default '',
|
||||||
|
f4 varchar(50) default NULL,
|
||||||
|
f5 bigint not null,
|
||||||
|
f6 bigint not null default 10,
|
||||||
|
f7 datetime not null,
|
||||||
|
f8 datetime default '2006-01-01'
|
||||||
|
);
|
||||||
|
select column_default from information_schema.columns where table_name= 't1';
|
||||||
|
show columns from t1;
|
||||||
|
drop table t1;
|
||||||
|
|
||||||
--echo End of 5.0 tests.
|
--echo End of 5.0 tests.
|
||||||
|
@ -112,4 +112,29 @@ commit;
|
|||||||
|
|
||||||
drop table t1, t2;
|
drop table t1, t2;
|
||||||
|
|
||||||
# End of 4.1 tests
|
--echo End of 4.1 tests
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#25164 create table `a` as select * from `A` hangs
|
||||||
|
#
|
||||||
|
|
||||||
|
set storage_engine=innodb;
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
|
drop table if exists a;
|
||||||
|
drop table if exists A;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
|
create table A (c int);
|
||||||
|
insert into A (c) values (0);
|
||||||
|
--error 0,ER_LOCK_DEADLOCK,ER_UPDATE_TABLE_USED
|
||||||
|
create table a as select * from A;
|
||||||
|
drop table A;
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
|
drop table if exists a;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
|
set storage_engine=default;
|
||||||
|
|
||||||
|
--echo End of 5.0 tests.
|
||||||
|
@ -910,4 +910,54 @@ ROLLBACK;
|
|||||||
ROLLBACK;
|
ROLLBACK;
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#30596: GROUP BY optimization gives wrong result order
|
||||||
|
#
|
||||||
|
CREATE TABLE t1(
|
||||||
|
a INT,
|
||||||
|
b INT NOT NULL,
|
||||||
|
c INT NOT NULL,
|
||||||
|
d INT,
|
||||||
|
UNIQUE KEY (c,b)
|
||||||
|
) engine=innodb;
|
||||||
|
|
||||||
|
INSERT INTO t1 VALUES (1,1,1,50), (1,2,3,40), (2,1,3,4);
|
||||||
|
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d;
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b,d ORDER BY NULL;
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
SELECT c,b,d FROM t1 ORDER BY c,b,d;
|
||||||
|
|
||||||
|
EXPLAIN SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
SELECT c,b,d FROM t1 GROUP BY c,b;
|
||||||
|
EXPLAIN SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
SELECT c,b FROM t1 GROUP BY c,b;
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug #31001: ORDER BY DESC in InnoDB not working
|
||||||
|
#
|
||||||
|
CREATE TABLE t1 (a INT, b INT, PRIMARY KEY (a), INDEX b (b)) ENGINE=InnoDB;
|
||||||
|
INSERT INTO t1(a,b) VALUES (1,1), (2,2), (3,2);
|
||||||
|
|
||||||
|
#The two queries below should produce different results, but they don't.
|
||||||
|
query_vertical EXPLAIN SELECT * FROM t1 WHERE b=2 ORDER BY a ASC;
|
||||||
|
SELECT * FROM t1 WHERE b=2 ORDER BY a ASC;
|
||||||
|
query_vertical EXPLAIN SELECT * FROM t1 WHERE b=2 ORDER BY a DESC;
|
||||||
|
SELECT * FROM t1 WHERE b=2 ORDER BY a DESC;
|
||||||
|
|
||||||
|
query_vertical EXPLAIN SELECT * FROM t1 ORDER BY b ASC, a ASC;
|
||||||
|
SELECT * FROM t1 ORDER BY b ASC, a ASC;
|
||||||
|
query_vertical EXPLAIN SELECT * FROM t1 ORDER BY b DESC, a DESC;
|
||||||
|
SELECT * FROM t1 ORDER BY b DESC, a DESC;
|
||||||
|
query_vertical EXPLAIN SELECT * FROM t1 ORDER BY b ASC, a DESC;
|
||||||
|
SELECT * FROM t1 ORDER BY b ASC, a DESC;
|
||||||
|
query_vertical EXPLAIN SELECT * FROM t1 ORDER BY b DESC, a ASC;
|
||||||
|
SELECT * FROM t1 ORDER BY b DESC, a ASC;
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
|
||||||
--echo End of 5.0 tests
|
--echo End of 5.0 tests
|
||||||
|
@ -276,4 +276,9 @@ remove_file $MYSQLTEST_VARDIR/tmp/bug21412.sql;
|
|||||||
--exec $MYSQL --pager="540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -e "select 1" > /dev/null 2>&1
|
--exec $MYSQL --pager="540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -e "select 1" > /dev/null 2>&1
|
||||||
--exec $MYSQL --character-sets-dir="540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -e "select 1" 2>&1
|
--exec $MYSQL --character-sets-dir="540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" -e "select 1" 2>&1
|
||||||
|
|
||||||
|
#
|
||||||
|
# bug #30164: Using client side macro inside server side comments generates broken queries
|
||||||
|
#
|
||||||
|
--exec $MYSQL test -e "/*! \C latin1 */ select 1;"
|
||||||
|
|
||||||
--echo End of 5.0 tests
|
--echo End of 5.0 tests
|
||||||
|
1
mysql-test/t/mysqldump-compat.opt
Normal file
1
mysql-test/t/mysqldump-compat.opt
Normal file
@ -0,0 +1 @@
|
|||||||
|
--loose-debug=d,4x_server_emul
|
13
mysql-test/t/mysqldump-compat.test
Normal file
13
mysql-test/t/mysqldump-compat.test
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Embedded server doesn't support external clients
|
||||||
|
--source include/not_embedded.inc
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug #30126: semicolon before closing */ in /*!... CREATE DATABASE ;*/
|
||||||
|
#
|
||||||
|
|
||||||
|
CREATE DATABASE mysqldump_30126;
|
||||||
|
USE mysqldump_30126;
|
||||||
|
CREATE TABLE t1 (c1 int);
|
||||||
|
--exec $MYSQL_DUMP --add-drop-database mysqldump_30126 > $MYSQLTEST_VARDIR/tmp/bug30126.sql
|
||||||
|
--exec $MYSQL mysqldump_30126 < $MYSQLTEST_VARDIR/tmp/bug30126.sql
|
||||||
|
DROP DATABASE mysqldump_30126;
|
1
mysql-test/t/named_pipe-master.opt
Normal file
1
mysql-test/t/named_pipe-master.opt
Normal file
@ -0,0 +1 @@
|
|||||||
|
--loose-enable-named-pipe
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user