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
5b013eb6
Commit
5b013eb6
authored
Jun 15, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed warnings raised from mysqltest (unknown -- commands)
parent
60456bd8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
mysql-test/t/greedy_optimizer.test
mysql-test/t/greedy_optimizer.test
+2
-2
mysql-test/t/join.test
mysql-test/t/join.test
+4
-2
mysql-test/t/ndb_index_ordered.test
mysql-test/t/ndb_index_ordered.test
+1
-1
No files found.
mysql-test/t/greedy_optimizer.test
View file @
5b013eb6
...
@@ -145,11 +145,11 @@ select @@optimizer_prune_level;
...
@@ -145,11 +145,11 @@ select @@optimizer_prune_level;
#
#
# These are the values for the parameters that control the greedy optimizer
# These are the values for the parameters that control the greedy optimizer
# (total 6 combinations - 3 for optimizer_search_depth, 2 for optimizer_prune_level):
# (total 6 combinations - 3 for optimizer_search_depth, 2 for optimizer_prune_level):
--
# 3:
# set optimizer_search_depth=0; - automatic
# set optimizer_search_depth=0; - automatic
# set optimizer_search_depth=1; - min
# set optimizer_search_depth=1; - min
# set optimizer_search_depth=62; - max (default)
# set optimizer_search_depth=62; - max (default)
--
# 2:
# set optimizer_prune_level=0 - exhaustive;
# set optimizer_prune_level=0 - exhaustive;
# set optimizer_prune_level=1 - heuristic; # default
# set optimizer_prune_level=1 - heuristic; # default
...
...
mysql-test/t/join.test
View file @
5b013eb6
...
@@ -512,10 +512,12 @@ select * from v1a join (t3 natural join t4) on a = y;
...
@@ -512,10 +512,12 @@ select * from v1a join (t3 natural join t4) on a = y;
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# Negative tests (tests for errors)
# Negative tests (tests for errors)
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# works in Oracle - bug
--
error
1052
--
error
1052
select
*
from
t1
natural
join
(
t3
cross
join
t4
);
--
works
in
Oracle
-
bug
select
*
from
t1
natural
join
(
t3
cross
join
t4
);
# works in Oracle - bug
--
error
1052
--
error
1052
select
*
from
(
t3
cross
join
t4
)
natural
join
t1
;
--
works
in
Oracle
-
bug
select
*
from
(
t3
cross
join
t4
)
natural
join
t1
;
--
error
1052
--
error
1052
select
*
from
t1
join
(
t2
,
t3
)
using
(
b
);
select
*
from
t1
join
(
t2
,
t3
)
using
(
b
);
--
error
1052
--
error
1052
...
...
mysql-test/t/ndb_index_ordered.test
View file @
5b013eb6
...
@@ -50,7 +50,7 @@ update t1 set c = 13 where b <= 3;
...
@@ -50,7 +50,7 @@ update t1 set c = 13 where b <= 3;
select
*
from
t1
order
by
a
;
select
*
from
t1
order
by
a
;
update
t1
set
b
=
b
+
1
where
b
>
4
and
b
<
7
;
update
t1
set
b
=
b
+
1
where
b
>
4
and
b
<
7
;
select
*
from
t1
order
by
a
;
select
*
from
t1
order
by
a
;
--
Update
primary
key
#
Update primary key
update
t1
set
a
=
a
+
10
where
b
>
1
and
b
<
7
;
update
t1
set
a
=
a
+
10
where
b
>
1
and
b
<
7
;
select
*
from
t1
order
by
a
;
select
*
from
t1
order
by
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