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
f5d1109c
Commit
f5d1109c
authored
Mar 02, 2009
by
Bernt M. Johnsen
Browse files
Options
Browse Files
Download
Plain Diff
Prepared BUG#42711 for push on 5.1
parents
83945e9d
ef165e36
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
30 deletions
+47
-30
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+1
-1
mysql-test/t/mysql.test
mysql-test/t/mysql.test
+33
-23
mysql-test/t/mysqldump-compat.test
mysql-test/t/mysqldump-compat.test
+6
-2
mysql-test/t/mysqltest.test
mysql-test/t/mysqltest.test
+1
-1
mysql-test/t/show_check.test
mysql-test/t/show_check.test
+6
-3
No files found.
mysql-test/r/show_check.result
View file @
f5d1109c
...
...
@@ -1198,7 +1198,7 @@ CREATE DATABASE mysqltest1;
use mysqltest1;
CREATE TABLE t1(1 INT);
---> Dumping mysqltest1 to
show_check.mysqltest1.sql
---> Dumping mysqltest1 to
outfile1
DROP DATABASE mysqltest1;
...
...
mysql-test/t/mysql.test
View file @
f5d1109c
...
...
@@ -98,35 +98,43 @@ drop table t1;
# Bug #20432: mysql client interprets commands in comments
#
--
let
$file
=
$MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
# if the client sees the 'use' within the comment, we haven't fixed
--
exec
echo
"/*"
>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
echo
"use"
>>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
echo
"*/"
>>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
$MYSQL
<
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
2
>&
1
--
exec
echo
"/*"
>
$
file
--
exec
echo
"use"
>>
$
file
--
exec
echo
"*/"
>>
$
file
--
exec
$MYSQL
<
$
file
2
>&
1
# SQL can have embedded comments => workie
--
exec
echo
"select /*"
>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
echo
"use"
>>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
echo
"*/ 1"
>>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
$MYSQL
<
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
2
>&
1
--
exec
echo
"select /*"
>
$
file
--
exec
echo
"use"
>>
$
file
--
exec
echo
"*/ 1"
>>
$
file
--
exec
$MYSQL
<
$
file
2
>&
1
# client commands on the other hand must be at BOL => error
--
exec
echo
"/*"
>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
echo
"xxx"
>>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
echo
"*/ use"
>>
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
echo
"/*"
>
$
file
--
exec
echo
"xxx"
>>
$
file
--
exec
echo
"*/ use"
>>
$
file
--
error
1
--
exec
$MYSQL
<
$
MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
2
>&
1
--
exec
$MYSQL
<
$
file
2
>&
1
# client comment recognized, but parameter missing => error
--
exec
echo
"use"
>
$MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
--
exec
$MYSQL
<
$MYSQLTEST_VARDIR
/
tmp
/
bug20432
.
sql
2
>&
1
--
exec
echo
"use"
>
$file
--
exec
$MYSQL
<
$file
2
>&
1
--
remove_file
$file
#
# Bug #20328: mysql client interprets commands in comments
#
--
exec
$MYSQL
-
e
"help"
>
$MYSQLTEST_VARDIR
/
tmp
/
bug20328_1
.
result
--
exec
$MYSQL
-
e
"help "
>
$MYSQLTEST_VARDIR
/
tmp
/
bug20328_2
.
result
--
diff_files
$MYSQLTEST_VARDIR
/
tmp
/
bug20328_1
.
result
$MYSQLTEST_VARDIR
/
tmp
/
bug20328_2
.
result
--
let
$file1
=
$MYSQLTEST_VARDIR
/
tmp
/
bug20328_1
.
result
--
let
$file2
=
$MYSQLTEST_VARDIR
/
tmp
/
bug20328_2
.
result
--
exec
$MYSQL
-
e
"help"
>
$file1
--
exec
$MYSQL
-
e
"help "
>
$file2
--
diff_files
$file1
$file2
--
remove_file
$file1
--
remove_file
$file2
#
# Bug #19216: Client crashes on long SELECT
...
...
@@ -152,13 +160,15 @@ EOF
#
# Bug #20103: Escaping with backslash does not work
#
--
exec
echo
"SET SQL_MODE = 'NO_BACKSLASH_ESCAPES';"
>
$MYSQLTEST_VARDIR
/
tmp
/
bug20103
.
sql
--
exec
echo
"SELECT '\';"
>>
$MYSQLTEST_VARDIR
/
tmp
/
bug20103
.
sql
--
exec
$MYSQL
<
$MYSQLTEST_VARDIR
/
tmp
/
bug20103
.
sql
2
>&
1
--
let
$file
=
$MYSQLTEST_VARDIR
/
tmp
/
bug20103
.
sql
--
exec
echo
"SET SQL_MODE = 'NO_BACKSLASH_ESCAPES';"
>
$file
--
exec
echo
"SELECT '\';"
>>
$file
--
exec
$MYSQL
<
$file
2
>&
1
--
exec
echo
"SET SQL_MODE = '';"
>
$MYSQLTEST_VARDIR
/
tmp
/
bug20103
.
sql
--
exec
echo
"SELECT '\';';"
>>
$MYSQLTEST_VARDIR
/
tmp
/
bug20103
.
sql
--
exec
$MYSQL
<
$MYSQLTEST_VARDIR
/
tmp
/
bug20103
.
sql
2
>&
1
--
exec
echo
"SET SQL_MODE = '';"
>
$file
--
exec
echo
"SELECT '\';';"
>>
$file
--
exec
$MYSQL
<
$file
2
>&
1
--
remove_file
$file
#
# Bug#17583: mysql drops connection when stdout is not writable
...
...
mysql-test/t/mysqldump-compat.test
View file @
f5d1109c
...
...
@@ -5,9 +5,13 @@
# Bug #30126: semicolon before closing */ in /*!... CREATE DATABASE ;*/
#
--
let
$file
=
$MYSQLTEST_VARDIR
/
tmp
/
bug30126
.
sql
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
--
exec
$MYSQL_DUMP
--
add
-
drop
-
database
mysqldump_30126
>
$
file
--
exec
$MYSQL
mysqldump_30126
<
$
file
DROP
DATABASE
mysqldump_30126
;
--
remove_file
$file
mysql-test/t/mysqltest.test
View file @
f5d1109c
...
...
@@ -1463,7 +1463,7 @@ select "this will be executed";
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
zero_length_file
.
result
;
--
error
0
,
1
remove_file
$MYSQLTEST_VARDIR
/
log
/
zero_length_file
.
reject
;
remove_file
$MYSQLTEST_VARDIR
/
tmp
/
zero_length_file
.
reject
;
--
error
0
,
1
remove_file
$MYSQL_TEST_DIR
/
r
/
zero_length_file
.
reject
;
...
...
mysql-test/t/show_check.test
View file @
f5d1109c
...
...
@@ -897,10 +897,12 @@ CREATE TABLE t1(
# Check:
# - Dump mysqltest1;
--
let
$outfile1
=
$MYSQLTEST_VARDIR
/
tmp
/
show_check
.
mysqltest1
.
sql
--
echo
--
echo
--->
Dumping
mysqltest1
to
show_check
.
mysqltest1
.
sql
--
echo
--->
Dumping
mysqltest1
to
outfile1
--
exec
$MYSQL_DUMP
--
default
-
character
-
set
=
latin1
--
character
-
sets
-
dir
=
$CHARSETSDIR
--
databases
mysqltest1
>
$
MYSQLTEST_VARDIR
/
tmp
/
show_check
.
mysqltest1
.
sql
--
exec
$MYSQL_DUMP
--
default
-
character
-
set
=
latin1
--
character
-
sets
-
dir
=
$CHARSETSDIR
--
databases
mysqltest1
>
$
outfile1
# - Clean mysqltest1;
...
...
@@ -915,7 +917,8 @@ DROP DATABASE mysqltest1;
--
echo
--
echo
--->
Restoring
mysqltest1
...
--
exec
$MYSQL
test
<
$MYSQLTEST_VARDIR
/
tmp
/
show_check
.
mysqltest1
.
sql
--
exec
$MYSQL
test
<
$outfile1
--
remove_file
$outfile1
# - Check definition of the table.
...
...
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