Merge mysql.com:/home/bkroot/mysql-5.1-new
into mysql.com:/home/bk/b17400-mysql-5.1-new
This commit is contained in:
commit
2d360cd035
@ -465,4 +465,10 @@ select event_schema, event_name, definer, event_body from information_schema.eve
|
|||||||
event_schema event_name definer event_body
|
event_schema event_name definer event_body
|
||||||
events_test white_space root@localhost select 3
|
events_test white_space root@localhost select 3
|
||||||
drop event white_space;
|
drop event white_space;
|
||||||
|
create event e1 on schedule every 1 year do set @a = 5;
|
||||||
|
create table t1 (s1 int);
|
||||||
|
create trigger t1_ai after insert on t1 for each row show create event e1;
|
||||||
|
ERROR 0A000: Not allowed to return a result set from a trigger
|
||||||
|
drop table t1;
|
||||||
|
drop event e1;
|
||||||
drop database events_test;
|
drop database events_test;
|
||||||
|
@ -1166,3 +1166,10 @@ drop procedure bug15091;
|
|||||||
drop function if exists bug16896;
|
drop function if exists bug16896;
|
||||||
create aggregate function bug16896() returns int return 1;
|
create aggregate function bug16896() returns int return 1;
|
||||||
ERROR 42000: AGGREGATE is not supported for stored functions
|
ERROR 42000: AGGREGATE is not supported for stored functions
|
||||||
|
drop function if exists bug16164;
|
||||||
|
create function bug16164() returns int
|
||||||
|
begin
|
||||||
|
show authors;
|
||||||
|
return 42;
|
||||||
|
end|
|
||||||
|
ERROR 0A000: Not allowed to return a result set from a function
|
||||||
|
@ -427,6 +427,16 @@ drop event white_space;
|
|||||||
# END: BUG #17453: Creating Event crash the server
|
# END: BUG #17453: Creating Event crash the server
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#17403 "Events: packets out of order with show create event"
|
||||||
|
#
|
||||||
|
create event e1 on schedule every 1 year do set @a = 5;
|
||||||
|
create table t1 (s1 int);
|
||||||
|
--error ER_SP_NO_RETSET
|
||||||
|
create trigger t1_ai after insert on t1 for each row show create event e1;
|
||||||
|
drop table t1;
|
||||||
|
drop event e1;
|
||||||
|
|
||||||
##set global event_scheduler=1;
|
##set global event_scheduler=1;
|
||||||
##select get_lock("test_lock3", 20);
|
##select get_lock("test_lock3", 20);
|
||||||
##create event закачка on schedule every 10 hour do select get_lock("test_lock3", 20);
|
##create event закачка on schedule every 10 hour do select get_lock("test_lock3", 20);
|
||||||
|
@ -1691,6 +1691,24 @@ drop function if exists bug16896;
|
|||||||
--error ER_SP_NO_AGGREGATE
|
--error ER_SP_NO_AGGREGATE
|
||||||
create aggregate function bug16896() returns int return 1;
|
create aggregate function bug16896() returns int return 1;
|
||||||
|
|
||||||
|
#
|
||||||
|
# End of 5.0 tests
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Bug#16164 "Easter egg": check that SHOW AUTHORS is disabled in
|
||||||
|
# stored functions/triggers
|
||||||
|
#
|
||||||
|
--disable_warnings
|
||||||
|
drop function if exists bug16164;
|
||||||
|
--enable_warnings
|
||||||
|
delimiter |;
|
||||||
|
--error ER_SP_NO_RETSET
|
||||||
|
create function bug16164() returns int
|
||||||
|
begin
|
||||||
|
show authors;
|
||||||
|
return 42;
|
||||||
|
end|
|
||||||
|
|
||||||
#
|
#
|
||||||
# BUG#NNNN: New bug synopsis
|
# BUG#NNNN: New bug synopsis
|
||||||
|
@ -176,6 +176,7 @@ sp_get_flags_for_command(LEX *lex)
|
|||||||
case SQLCOM_SHOW_CREATE_DB:
|
case SQLCOM_SHOW_CREATE_DB:
|
||||||
case SQLCOM_SHOW_CREATE_FUNC:
|
case SQLCOM_SHOW_CREATE_FUNC:
|
||||||
case SQLCOM_SHOW_CREATE_PROC:
|
case SQLCOM_SHOW_CREATE_PROC:
|
||||||
|
case SQLCOM_SHOW_CREATE_EVENT:
|
||||||
case SQLCOM_SHOW_DATABASES:
|
case SQLCOM_SHOW_DATABASES:
|
||||||
case SQLCOM_SHOW_ERRORS:
|
case SQLCOM_SHOW_ERRORS:
|
||||||
case SQLCOM_SHOW_FIELDS:
|
case SQLCOM_SHOW_FIELDS:
|
||||||
@ -200,6 +201,7 @@ sp_get_flags_for_command(LEX *lex)
|
|||||||
case SQLCOM_SHOW_WARNS:
|
case SQLCOM_SHOW_WARNS:
|
||||||
case SQLCOM_SHOW_PROC_CODE:
|
case SQLCOM_SHOW_PROC_CODE:
|
||||||
case SQLCOM_SHOW_FUNC_CODE:
|
case SQLCOM_SHOW_FUNC_CODE:
|
||||||
|
case SQLCOM_SHOW_AUTHORS:
|
||||||
case SQLCOM_REPAIR:
|
case SQLCOM_REPAIR:
|
||||||
case SQLCOM_BACKUP_TABLE:
|
case SQLCOM_BACKUP_TABLE:
|
||||||
case SQLCOM_RESTORE_TABLE:
|
case SQLCOM_RESTORE_TABLE:
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
REM - First we need to copy all the cmakelists to the proper folders
|
|
||||||
cd win\cmakefiles
|
|
||||||
call deploy.bat
|
|
||||||
cd ..\..
|
|
||||||
|
|
||||||
del cmakecache.txt
|
del cmakecache.txt
|
||||||
copy win\vs71cache.txt cmakecache.txt
|
copy win\vs71cache.txt cmakecache.txt
|
||||||
cmake -G "Visual Studio 7 .NET 2003"
|
cmake -G "Visual Studio 7 .NET 2003"
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
REM - First we need to copy all the cmakelists to the proper folders
|
|
||||||
cd win\cmakefiles
|
|
||||||
call deploy.bat
|
|
||||||
cd ..\..
|
|
||||||
|
|
||||||
del cmakecache.txt
|
del cmakecache.txt
|
||||||
copy win\vs8cache.txt cmakecache.txt
|
copy win\vs8cache.txt cmakecache.txt
|
||||||
cmake -G "Visual Studio 8 2005"
|
cmake -G "Visual Studio 8 2005"
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
@echo off
|
|
||||||
copy base ..\..\cmakelists.txt
|
|
||||||
copy client ..\..\client\cmakelists.txt
|
|
||||||
copy dbug ..\..\dbug\cmakelists.txt
|
|
||||||
copy extra ..\..\extra\cmakelists.txt
|
|
||||||
copy mysys ..\..\mysys\cmakelists.txt
|
|
||||||
copy regex ..\..\regex\cmakelists.txt
|
|
||||||
copy sql ..\..\sql\cmakelists.txt
|
|
||||||
copy strings ..\..\strings\cmakelists.txt
|
|
||||||
copy vio ..\..\vio\cmakelists.txt
|
|
||||||
copy zlib ..\..\zlib\cmakelists.txt
|
|
||||||
copy yassl ..\..\extra\yassl\cmakelists.txt
|
|
||||||
copy taocrypt ..\..\extra\yassl\taocrypt\cmakelists.txt
|
|
||||||
copy bdb ..\..\storage\bdb\cmakelists.txt
|
|
||||||
copy heap ..\..\storage\heap\cmakelists.txt
|
|
||||||
copy innobase ..\..\storage\innobase\cmakelists.txt
|
|
||||||
copy myisam ..\..\storage\myisam\cmakelists.txt
|
|
||||||
copy myisammrg ..\..\storage\myisammrg\cmakelists.txt
|
|
||||||
copy im ..\..\server-tools\instance-manager\cmakelists.txt
|
|
||||||
copy libmysql ..\..\libmysql\cmakelists.txt
|
|
||||||
copy tests ..\..\tests\cmakelists.txt
|
|
Loading…
x
Reference in New Issue
Block a user