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
72ff5488
Commit
72ff5488
authored
Jun 20, 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
a1fefd4e
325b8835
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
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
tests/mysql_client_test.c
tests/mysql_client_test.c
+6
-3
No files found.
mysql-test/t/greedy_optimizer.test
View file @
72ff5488
...
...
@@ -145,11 +145,11 @@ select @@optimizer_prune_level;
#
# 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):
#
#
3:
# set optimizer_search_depth=0; - automatic
# set optimizer_search_depth=1; - min
# set optimizer_search_depth=62; - max (default)
#
#
2:
# set optimizer_prune_level=0 - exhaustive;
# set optimizer_prune_level=1 - heuristic; # default
...
...
mysql-test/t/join.test
View file @
72ff5488
...
...
@@ -512,10 +512,12 @@ select * from v1a join (t3 natural join t4) on a = y;
#--------------------------------------------------------------------
# Negative tests (tests for errors)
#--------------------------------------------------------------------
# works in Oracle - bug
--
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
select
*
from
(
t3
cross
join
t4
)
natural
join
t1
;
# works in Oracle - bug
select
*
from
(
t3
cross
join
t4
)
natural
join
t1
;
--
error
1052
select
*
from
t1
join
(
t2
,
t3
)
using
(
b
);
--
error
1052
...
...
tests/mysql_client_test.c
View file @
72ff5488
...
...
@@ -16079,7 +16079,8 @@ static void test_bug24179()
Bug#28075 "COM_DEBUG crashes mysqld"
Note: Test disabled because of failure in PushBuild.
*/
#ifdef fix_bug_in_pb_first
#ifdef FIX_BUG_IN_PB_FIRST
static
void
test_bug28075
()
{
int
rc
;
...
...
@@ -16089,7 +16090,7 @@ static void test_bug28075()
rc
=
mysql_dump_debug_info
(
mysql
);
DIE_UNLESS
(
rc
==
0
);
rc
=
mysql_ping
(
mysql
);
DIE_UNLESS
(
rc
==
0
);
...
...
@@ -16101,6 +16102,7 @@ static void test_bug28075()
/*
Bug#27876 (SF with cyrillic variable name fails during execution (regression))
*/
static
void
test_bug27876
()
{
int
rc
;
...
...
@@ -16165,6 +16167,7 @@ static void test_bug27876()
Bug#28505: mysql_affected_rows() returns wrong value if CLIENT_FOUND_ROWS
flag is set.
*/
static
void
test_bug28505
()
{
my_ulonglong
res
;
...
...
@@ -16554,7 +16557,7 @@ static struct my_tests_st my_tests[]= {
{
"test_status"
,
test_status
},
{
"test_bug24179"
,
test_bug24179
},
{
"test_ps_query_cache"
,
test_ps_query_cache
},
#ifdef
fix_bug_in_pb_first
#ifdef
FIX_BUG_IN_PB_FIRST
{
"test_bug28075"
,
test_bug28075
},
#endif
{
"test_bug27876"
,
test_bug27876
},
...
...
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