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
f022f348
Commit
f022f348
authored
Jul 05, 2007
by
istruewing@chilla.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fixes.
Fixed typos and comment styles in tests.
parent
9703b13f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
26 deletions
+4
-26
mysql-test/r/rpl_partition.result
mysql-test/r/rpl_partition.result
+0
-22
mysql-test/t/ctype_uca.test
mysql-test/t/ctype_uca.test
+1
-1
mysql-test/t/rpl_partition.test
mysql-test/t/rpl_partition.test
+2
-2
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+1
-1
No files found.
mysql-test/r/rpl_partition.result
View file @
f022f348
...
...
@@ -10,31 +10,9 @@ select @@global.binlog_format, @@session.binlog_format;
@@global.binlog_format ROW
@@session.binlog_format ROW
DROP TABLE IF EXISTS t1, t2, t3;
Warnings:
Level Note
Code 1051
Message Unknown table 't1'
Level Note
Code 1051
Message Unknown table 't2'
Level Note
Code 1051
Message Unknown table 't3'
DROP PROCEDURE IF EXISTS p1;
Warnings:
Level Note
Code 1305
Message PROCEDURE p1 does not exist
DROP PROCEDURE IF EXISTS p2;
Warnings:
Level Note
Code 1305
Message PROCEDURE p2 does not exist
DROP PROCEDURE IF EXISTS p3;
Warnings:
Level Note
Code 1305
Message PROCEDURE p3 does not exist
CREATE TABLE t1(id MEDIUMINT NOT NULL AUTO_INCREMENT,
dt TIMESTAMP, user CHAR(255), uuidf LONGBLOB,
fkid MEDIUMINT, filler VARCHAR(255),
...
...
mysql-test/t/ctype_uca.test
View file @
f022f348
...
...
@@ -530,7 +530,7 @@ create table t1 (
a
varchar
(
255
),
key
a
(
a
)
)
character
set
utf8
collate
utf8_czech_ci
;
--
In
Czech
'ch'
is
a
single
letter
between
'h'
and
'i'
#
In Czech 'ch' is a single letter between 'h' and 'i'
insert
into
t1
values
(
'b'
),(
'c'
),(
'd'
),(
'e'
),(
'f'
),(
'g'
),(
'h'
),(
'ch'
),(
'i'
),(
'j'
);
select
*
from
t1
where
a
like
'c%'
;
...
...
mysql-test/t/rpl_partition.test
View file @
f022f348
...
...
@@ -9,12 +9,12 @@ SET GLOBAL binlog_format = 'ROW';
SET
SESSION
binlog_format
=
'ROW'
;
select
@@
global
.
binlog_format
,
@@
session
.
binlog_format
;
--
disable
-
warnings
--
disable
_
warnings
DROP
TABLE
IF
EXISTS
t1
,
t2
,
t3
;
DROP
PROCEDURE
IF
EXISTS
p1
;
DROP
PROCEDURE
IF
EXISTS
p2
;
DROP
PROCEDURE
IF
EXISTS
p3
;
--
enable
-
warnings
--
enable
_
warnings
eval
CREATE
TABLE
t1
(
id
MEDIUMINT
NOT
NULL
AUTO_INCREMENT
,
dt
TIMESTAMP
,
user
CHAR
(
255
),
uuidf
LONGBLOB
,
...
...
mysql-test/t/subselect.test
View file @
f022f348
...
...
@@ -2970,7 +2970,7 @@ DROP TABLE t1,t2;
CREATE
TABLE
t1
(
a
INT
,
b
INT
);
INSERT
INTO
t1
VALUES
(
1
,
2
),
(
1
,
3
),
(
1
,
4
),
(
2
,
1
),
(
2
,
2
);
--
returns
no
rows
,
when
it
should
#
returns no rows, when it should
SELECT
a1
.
a
,
COUNT
(
*
)
FROM
t1
a1
WHERE
a1
.
a
=
1
AND
EXISTS
(
SELECT
a2
.
a
FROM
t1
a2
WHERE
a2
.
a
=
a1
.
a
)
GROUP
BY
a1
.
a
;
...
...
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