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
e6d02a12
Commit
e6d02a12
authored
Nov 17, 2009
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
c4584fc6
b35feb1e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
mysql-test/r/partition.result
mysql-test/r/partition.result
+5
-0
mysql-test/t/partition.test
mysql-test/t/partition.test
+3
-0
sql/sql_partition.cc
sql/sql_partition.cc
+12
-0
No files found.
mysql-test/r/partition.result
View file @
e6d02a12
...
@@ -2045,10 +2045,15 @@ DROP TABLE t1;
...
@@ -2045,10 +2045,15 @@ DROP TABLE t1;
#
#
# Bug #45807: crash accessing partitioned table and sql_mode
# Bug #45807: crash accessing partitioned table and sql_mode
# contains ONLY_FULL_GROUP_BY
# contains ONLY_FULL_GROUP_BY
# Bug#46923: select count(*) from partitioned table fails with
# ONLY_FULL_GROUP_BY
#
#
SET SESSION SQL_MODE='ONLY_FULL_GROUP_BY';
SET SESSION SQL_MODE='ONLY_FULL_GROUP_BY';
CREATE TABLE t1(id INT,KEY(id)) ENGINE=MYISAM
CREATE TABLE t1(id INT,KEY(id)) ENGINE=MYISAM
PARTITION BY HASH(id) PARTITIONS 2;
PARTITION BY HASH(id) PARTITIONS 2;
SELECT COUNT(*) FROM t1;
COUNT(*)
0
DROP TABLE t1;
DROP TABLE t1;
SET SESSION SQL_MODE=DEFAULT;
SET SESSION SQL_MODE=DEFAULT;
#
#
...
...
mysql-test/t/partition.test
View file @
e6d02a12
...
@@ -2031,11 +2031,14 @@ DROP TABLE t1;
...
@@ -2031,11 +2031,14 @@ DROP TABLE t1;
--
echo
#
--
echo
#
--
echo
# Bug #45807: crash accessing partitioned table and sql_mode
--
echo
# Bug #45807: crash accessing partitioned table and sql_mode
--
echo
# contains ONLY_FULL_GROUP_BY
--
echo
# contains ONLY_FULL_GROUP_BY
--
echo
# Bug#46923: select count(*) from partitioned table fails with
--
echo
# ONLY_FULL_GROUP_BY
--
echo
#
--
echo
#
SET
SESSION
SQL_MODE
=
'ONLY_FULL_GROUP_BY'
;
SET
SESSION
SQL_MODE
=
'ONLY_FULL_GROUP_BY'
;
CREATE
TABLE
t1
(
id
INT
,
KEY
(
id
))
ENGINE
=
MYISAM
CREATE
TABLE
t1
(
id
INT
,
KEY
(
id
))
ENGINE
=
MYISAM
PARTITION
BY
HASH
(
id
)
PARTITIONS
2
;
PARTITION
BY
HASH
(
id
)
PARTITIONS
2
;
SELECT
COUNT
(
*
)
FROM
t1
;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
SET
SESSION
SQL_MODE
=
DEFAULT
;
SET
SESSION
SQL_MODE
=
DEFAULT
;
...
...
sql/sql_partition.cc
View file @
e6d02a12
...
@@ -905,6 +905,8 @@ bool fix_fields_part_func(THD *thd, Item* func_expr, TABLE *table,
...
@@ -905,6 +905,8 @@ bool fix_fields_part_func(THD *thd, Item* func_expr, TABLE *table,
char
*
db_name
;
char
*
db_name
;
char
db_name_string
[
FN_REFLEN
];
char
db_name_string
[
FN_REFLEN
];
bool
save_use_only_table_context
;
bool
save_use_only_table_context
;
uint8
saved_full_group_by_flag
;
nesting_map
saved_allow_sum_func
;
DBUG_ENTER
(
"fix_fields_part_func"
);
DBUG_ENTER
(
"fix_fields_part_func"
);
if
(
part_info
->
fixed
)
if
(
part_info
->
fixed
)
...
@@ -974,9 +976,19 @@ bool fix_fields_part_func(THD *thd, Item* func_expr, TABLE *table,
...
@@ -974,9 +976,19 @@ bool fix_fields_part_func(THD *thd, Item* func_expr, TABLE *table,
save_use_only_table_context
=
thd
->
lex
->
use_only_table_context
;
save_use_only_table_context
=
thd
->
lex
->
use_only_table_context
;
thd
->
lex
->
use_only_table_context
=
TRUE
;
thd
->
lex
->
use_only_table_context
=
TRUE
;
thd
->
lex
->
current_select
->
cur_pos_in_select_list
=
UNDEF_POS
;
thd
->
lex
->
current_select
->
cur_pos_in_select_list
=
UNDEF_POS
;
saved_full_group_by_flag
=
thd
->
lex
->
current_select
->
full_group_by_flag
;
saved_allow_sum_func
=
thd
->
lex
->
allow_sum_func
;
thd
->
lex
->
allow_sum_func
=
0
;
error
=
func_expr
->
fix_fields
(
thd
,
(
Item
**
)
&
func_expr
);
error
=
func_expr
->
fix_fields
(
thd
,
(
Item
**
)
&
func_expr
);
/*
Restore full_group_by_flag and allow_sum_func,
fix_fields should not affect mysql_select later, see Bug#46923.
*/
thd
->
lex
->
current_select
->
full_group_by_flag
=
saved_full_group_by_flag
;
thd
->
lex
->
allow_sum_func
=
saved_allow_sum_func
;
thd
->
lex
->
use_only_table_context
=
save_use_only_table_context
;
thd
->
lex
->
use_only_table_context
=
save_use_only_table_context
;
context
->
table_list
=
save_table_list
;
context
->
table_list
=
save_table_list
;
...
...
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