Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6c37cfee
Commit
6c37cfee
authored
Mar 16, 2006
by
mats@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/bkroot/mysql-5.1-new
into mysql.com:/home/bk/b17400-mysql-5.1-new
parents
704c0b57
0ae0f2cd
Changes
28
Show whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
43 additions
and
31 deletions
+43
-31
client/cmakelists.txt
client/cmakelists.txt
+0
-0
cmakelists.txt
cmakelists.txt
+0
-0
dbug/cmakelists.txt
dbug/cmakelists.txt
+0
-0
extra/cmakelists.txt
extra/cmakelists.txt
+0
-0
extra/yassl/cmakelists.txt
extra/yassl/cmakelists.txt
+0
-0
extra/yassl/taocrypt/cmakelists.txt
extra/yassl/taocrypt/cmakelists.txt
+0
-0
libmysql/cmakelists.txt
libmysql/cmakelists.txt
+0
-0
mysql-test/r/events.result
mysql-test/r/events.result
+6
-0
mysql-test/r/sp-error.result
mysql-test/r/sp-error.result
+7
-0
mysql-test/t/events.test
mysql-test/t/events.test
+10
-0
mysql-test/t/sp-error.test
mysql-test/t/sp-error.test
+18
-0
mysys/cmakelists.txt
mysys/cmakelists.txt
+0
-0
regex/cmakelists.txt
regex/cmakelists.txt
+0
-0
server-tools/instance-manager/cmakelists.txt
server-tools/instance-manager/cmakelists.txt
+0
-0
sql/cmakelists.txt
sql/cmakelists.txt
+0
-0
sql/sp_head.cc
sql/sp_head.cc
+2
-0
storage/bdb/cmakelists.txt
storage/bdb/cmakelists.txt
+0
-0
storage/heap/cmakelists.txt
storage/heap/cmakelists.txt
+0
-0
storage/innobase/cmakelists.txt
storage/innobase/cmakelists.txt
+0
-0
storage/myisam/cmakelists.txt
storage/myisam/cmakelists.txt
+0
-0
storage/myisammrg/cmakelists.txt
storage/myisammrg/cmakelists.txt
+0
-0
strings/cmakelists.txt
strings/cmakelists.txt
+0
-0
tests/cmakelists.txt
tests/cmakelists.txt
+0
-0
vio/cmakelists.txt
vio/cmakelists.txt
+0
-0
win/build-vs71.bat
win/build-vs71.bat
+0
-5
win/build-vs8.bat
win/build-vs8.bat
+0
-5
win/cmakefiles/deploy.bat
win/cmakefiles/deploy.bat
+0
-21
zlib/cmakelists.txt
zlib/cmakelists.txt
+0
-0
No files found.
win/cmakefiles/clien
t
→
client/cmakelists.tx
t
View file @
6c37cfee
File moved
win/cmakefiles/base
→
cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/dbug
→
dbug/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/extra
→
extra/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/yassl
→
extra/yassl/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/taocryp
t
→
extra/yassl/taocrypt/cmakelists.tx
t
View file @
6c37cfee
File moved
win/cmakefiles/libmysql
→
libmysql/cmakelists.txt
View file @
6c37cfee
File moved
mysql-test/r/events.result
View file @
6c37cfee
...
...
@@ -465,4 +465,10 @@ select event_schema, event_name, definer, event_body from information_schema.eve
event_schema event_name definer event_body
events_test white_space root@localhost select 3
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;
mysql-test/r/sp-error.result
View file @
6c37cfee
...
...
@@ -1166,3 +1166,10 @@ drop procedure bug15091;
drop function if exists bug16896;
create aggregate function bug16896() returns int return 1;
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
mysql-test/t/events.test
View file @
6c37cfee
...
...
@@ -427,6 +427,16 @@ drop event white_space;
# 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;
##select get_lock("test_lock3", 20);
##create event закачка on schedule every 10 hour do select get_lock("test_lock3", 20);
...
...
mysql-test/t/sp-error.test
View file @
6c37cfee
...
...
@@ -1691,6 +1691,24 @@ drop function if exists bug16896;
--
error
ER_SP_NO_AGGREGATE
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
...
...
win/cmakefiles/mysys
→
mysys/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/regex
→
regex/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/im
→
server-tools/instance-manager/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/sql
→
sql/cmakelists.txt
View file @
6c37cfee
File moved
sql/sp_head.cc
View file @
6c37cfee
...
...
@@ -176,6 +176,7 @@ sp_get_flags_for_command(LEX *lex)
case
SQLCOM_SHOW_CREATE_DB
:
case
SQLCOM_SHOW_CREATE_FUNC
:
case
SQLCOM_SHOW_CREATE_PROC
:
case
SQLCOM_SHOW_CREATE_EVENT
:
case
SQLCOM_SHOW_DATABASES
:
case
SQLCOM_SHOW_ERRORS
:
case
SQLCOM_SHOW_FIELDS
:
...
...
@@ -200,6 +201,7 @@ sp_get_flags_for_command(LEX *lex)
case
SQLCOM_SHOW_WARNS
:
case
SQLCOM_SHOW_PROC_CODE
:
case
SQLCOM_SHOW_FUNC_CODE
:
case
SQLCOM_SHOW_AUTHORS
:
case
SQLCOM_REPAIR
:
case
SQLCOM_BACKUP_TABLE
:
case
SQLCOM_RESTORE_TABLE
:
...
...
win/cmakefiles/bdb
→
storage/bdb/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/heap
→
storage/heap/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/innobase
→
storage/innobase/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/myisam
→
storage/myisam/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/myisammrg
→
storage/myisammrg/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/strings
→
strings/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/tests
→
tests/cmakelists.txt
View file @
6c37cfee
File moved
win/cmakefiles/vio
→
vio/cmakelists.txt
View file @
6c37cfee
File moved
win/build-vs71.bat
View file @
6c37cfee
@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
copy
win
\vs71cache.txt
cmakecache
.txt
cmake
-G
"Visual Studio 7 .NET 2003"
...
...
win/build-vs8.bat
View file @
6c37cfee
@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
copy
win
\vs8cache.txt
cmakecache
.txt
cmake
-G
"Visual Studio 8 2005"
...
...
win/cmakefiles/deploy.bat
deleted
100644 → 0
View file @
704c0b57
@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
win/cmakefiles/zlib
→
zlib/cmakelists.txt
View file @
6c37cfee
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment