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
f1336a58
Commit
f1336a58
authored
Jun 01, 2007
by
kostja@bodhi.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime
into bodhi.(none):/opt/local/work/mysql-5.1-runtime
parents
d0ff5df0
d97db648
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
9 deletions
+7
-9
mysql-test/t/mysql.test
mysql-test/t/mysql.test
+1
-1
mysql-test/t/mysqltest.test
mysql-test/t/mysqltest.test
+1
-1
mysql-test/t/order_by.test
mysql-test/t/order_by.test
+2
-2
mysql-test/t/row.test
mysql-test/t/row.test
+0
-2
mysql-test/t/sp.test
mysql-test/t/sp.test
+1
-1
mysql-test/t/subselect3.test
mysql-test/t/subselect3.test
+2
-2
No files found.
mysql-test/t/mysql.test
View file @
f1336a58
...
...
@@ -263,7 +263,7 @@ EOF
--
exec
$MYSQL
test
-
e
"show status"
2
>&
1
>
/
dev
/
null
--
exec
$MYSQL
--
help
2
>&
1
>
/
dev
/
null
--
exec
$MYSQL
--
version
2
>&
1
>
/
dev
/
null
--
enable_qu
a
ry_log
--
enable_qu
e
ry_log
#
# bug #26851: Mysql Client --pager Buffer Overflow
...
...
mysql-test/t/mysqltest.test
View file @
f1336a58
...
...
@@ -1871,7 +1871,7 @@ DROP TABLE t1;
--
disable_query_log
--
exec
$MYSQL_TEST
--
help
2
>&
1
>
/
dev
/
null
--
exec
$MYSQL_TEST
--
version
2
>&
1
>
/
dev
/
null
--
enable_qu
a
ry_log
--
enable_qu
e
ry_log
--
disable_abort_on_error
--
error
1
--
exec
$MYSQL_TEST
a
b
c
2
>&
1
>
/
dev
/
null
...
...
mysql-test/t/order_by.test
View file @
f1336a58
...
...
@@ -719,10 +719,10 @@ CREATE TABLE t1 (a INT UNSIGNED NOT NULL, b TIME);
INSERT
INTO
t1
(
a
)
VALUES
(
100000
),
(
0
),
(
100
),
(
1000000
),(
10000
),
(
1000
),
(
10
);
UPDATE
t1
SET
b
=
SEC_TO_TIME
(
a
);
--
Correct
ORDER
#
Correct ORDER
SELECT
a
,
b
FROM
t1
ORDER
BY
b
DESC
;
--
must
be
ordered
as
the
above
#
must be ordered as the above
SELECT
a
,
b
FROM
t1
ORDER
BY
SEC_TO_TIME
(
a
)
DESC
;
DROP
TABLE
t1
;
...
...
mysql-test/t/row.test
View file @
f1336a58
...
...
@@ -7,10 +7,8 @@ select (1,2,3) IN ((3,2,3), (1,2,3), (1,3,3));
select
row
(
10
,
2
,
3
)
IN
(
row
(
3
,
2
,
3
),
row
(
1
,
2
,
3
),
row
(
1
,
3
,
3
));
select
row
(
1
,
2
,
3
)
IN
(
row
(
3
,
NULL
,
3
),
row
(
1
,
2
,
3
),
row
(
1
,
3
,
3
));
select
row
(
10
,
2
,
3
)
IN
(
row
(
3
,
NULL
,
3
),
row
(
1
,
2
,
3
),
row
(
1
,
3
,
3
));
--
disable_ps_warnings
select
row
(
'a'
,
1.5
,
3
)
IN
(
row
(
1
,
2
,
3
),
row
(
'a'
,
1.5
,
3
),
row
(
'a'
,
'a'
,
'a'
));
select
row
(
'a'
,
0
,
3
)
IN
(
row
(
3
,
2
,
3
),
row
(
'a'
,
'a'
,
'3'
),
row
(
1
,
3
,
3
));
--
enable_ps_warnings
select
row
(
'a'
,
0
,
3
)
IN
(
row
(
3
,
2
,
3
),
row
(
'a'
,
'0'
,
'3'
),
row
(
1
,
3
,
3
));
select
row
(
'a'
,
1.5
,
3
)
IN
(
row
(
3
,
NULL
,
3
),
row
(
'a'
,
1.5
,
3
),
row
(
1
,
3
,
3
));
select
row
(
'b'
,
1.5
,
3
)
IN
(
row
(
3
,
NULL
,
3
),
row
(
'a'
,
1.5
,
3
),
row
(
1
,
3
,
3
));
...
...
mysql-test/t/sp.test
View file @
f1336a58
...
...
@@ -7095,7 +7095,7 @@ use test|
--disable_warnings
drop function if exists bug20777|
drop table if exists examplebug20777|
--enable
d
_warnings
--enable_warnings
create function bug20777(f1 bigint unsigned) returns bigint unsigned
begin
set f1 = (f1 - 10); set f1 = (f1 + 10);
...
...
mysql-test/t/subselect3.test
View file @
f1336a58
...
...
@@ -260,11 +260,11 @@ insert into t2 values
(
'dd'
,
1
,
NULL
);
alter
table
t1
add
index
idx
(
ie1
,
ie2
);
--
cc
3
NULL
NULL
#
cc 3 NULL NULL
select
oref
,
a
,
b
,
(
a
,
b
)
in
(
select
ie1
,
ie2
from
t1
where
oref
=
t2
.
oref
)
Z
from
t2
where
a
=
3
and
b
is
null
;
insert
into
t2
values
(
'new1'
,
10
,
10
);
insert
into
t1
values
(
'new1'
,
1234
,
10
,
NULL
);
--
new1
,
10
,
10
,
NULL
,
#
new1, 10, 10, NULL,
select
oref
,
a
,
b
,
(
a
,
b
)
in
(
select
ie1
,
ie2
from
t1
where
oref
=
t2
.
oref
)
Z
from
t2
where
a
=
10
and
b
=
10
;
explain
extended
select
oref
,
a
,
b
,
(
a
,
b
)
in
(
select
ie1
,
ie2
from
t1
where
oref
=
t2
.
oref
)
Z
from
t2
where
a
=
10
and
b
=
10
;
...
...
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