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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
c33a64a0
Commit
c33a64a0
authored
Feb 24, 2006
by
mats@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysqldev@production.mysql.com:my/mysql-5.1-release
into mysql.com:/home/bk/mysql-5.1-release-bug13418-lars
parents
b4953f12
52fbc7a1
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
132 additions
and
11 deletions
+132
-11
client/mysqlimport.c
client/mysqlimport.c
+0
-2
mysql-test/r/mysqldump.result
mysql-test/r/mysqldump.result
+30
-0
mysql-test/r/partition.result
mysql-test/r/partition.result
+33
-0
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+0
-1
mysql-test/t/mysqldump.test
mysql-test/t/mysqldump.test
+0
-2
mysql-test/t/partition.test
mysql-test/t/partition.test
+40
-0
sql/sql_partition.cc
sql/sql_partition.cc
+29
-6
No files found.
client/mysqlimport.c
View file @
c33a64a0
...
...
@@ -145,13 +145,11 @@ static struct my_option my_long_options[] =
(
gptr
*
)
&
opt_mysql_unix_port
,
(
gptr
*
)
&
opt_mysql_unix_port
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
#include <sslopt-longopts.h>
#if 0
{
"use-threads"
,
OPT_USE_THREADS
,
"Load files in parallel. The argument is the number "
"of threads to use for loading data."
,
(
gptr
*
)
&
opt_use_threads
,
(
gptr
*
)
&
opt_use_threads
,
0
,
GET_UINT
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
#endif
#ifndef DONT_ALLOW_USER_CHANGE
{
"user"
,
'u'
,
"User for login if not current user."
,
(
gptr
*
)
&
current_user
,
(
gptr
*
)
&
current_user
,
0
,
GET_STR
,
REQUIRED_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
...
...
mysql-test/r/mysqldump.result
View file @
c33a64a0
...
...
@@ -2650,3 +2650,33 @@ DELIMITER ;
DROP TRIGGER tr1;
DROP TABLE t1;
create table t1 (a text , b text);
create table t2 (a text , b text);
insert t1 values ("Duck, Duck", "goose");
insert t1 values ("Duck, Duck", "pidgeon");
insert t2 values ("We the people", "in order to perform");
insert t2 values ("a more perfect", "union");
select * from t1;
a b
Duck, Duck goose
Duck, Duck pidgeon
select * from t2;
a b
We the people in order to perform
a more perfect union
test.t1: Records: 2 Deleted: 0 Skipped: 0 Warnings: 0
test.t2: Records: 2 Deleted: 0 Skipped: 0 Warnings: 0
select * from t1;
a b
Duck, Duck goose
Duck, Duck pidgeon
Duck, Duck goose
Duck, Duck pidgeon
select * from t2;
a b
We the people in order to perform
a more perfect union
We the people in order to perform
a more perfect union
drop table t1;
drop table t2;
mysql-test/r/partition.result
View file @
c33a64a0
...
...
@@ -315,4 +315,37 @@ drop table t1;
create table t1 (s1 int, unique (s1)) partition by list (s1) (partition x1 VALUES in (10), partition x2 values in (20));
alter table t1 add partition (partition x3 values in (30));
drop table t1;
CREATE TABLE t1 (
f_int1 INTEGER, f_int2 INTEGER,
f_char1 CHAR(10), f_char2 CHAR(10), f_charbig VARCHAR(1000)
)
PARTITION BY RANGE(f_int1 DIV 2)
SUBPARTITION BY HASH(f_int1)
SUBPARTITIONS 2
(PARTITION parta VALUES LESS THAN (0),
PARTITION partb VALUES LESS THAN (5),
PARTITION parte VALUES LESS THAN (10),
PARTITION partf VALUES LESS THAN (2147483647));
INSERT INTO t1 SET f_int1 = NULL , f_int2 = -20, f_char1 = CAST(-20 AS CHAR),
f_char2 = CAST(-20 AS CHAR), f_charbig = '#NULL#';
SELECT * FROM t1 WHERE f_int1 IS NULL;
f_int1 f_int2 f_char1 f_char2 f_charbig
NULL -20 -20 -20 #NULL#
SELECT * FROM t1;
f_int1 f_int2 f_char1 f_char2 f_charbig
NULL -20 -20 -20 #NULL#
drop table t1;
CREATE TABLE t1 (
f_int1 INTEGER, f_int2 INTEGER,
f_char1 CHAR(10), f_char2 CHAR(10), f_charbig VARCHAR(1000) )
PARTITION BY LIST(MOD(f_int1,2))
SUBPARTITION BY KEY(f_int1)
(PARTITION part1 VALUES IN (-1) (SUBPARTITION sp1, SUBPARTITION sp2),
PARTITION part2 VALUES IN (0) (SUBPARTITION sp3, SUBPARTITION sp5),
PARTITION part3 VALUES IN (1) (SUBPARTITION sp4, SUBPARTITION sp6));
INSERT INTO t1 SET f_int1 = 2, f_int2 = 2, f_char1 = '2', f_char2 = '2', f_charbig = '===2===';
INSERT INTO t1 SET f_int1 = 2, f_int2 = 2, f_char1 = '2', f_char2 = '2', f_charbig = '===2===';
SELECT * FROM t1 WHERE f_int1 IS NULL;
f_int1 f_int2 f_char1 f_char2 f_charbig
drop table t1;
End of 5.1 tests
mysql-test/t/disabled.def
View file @
c33a64a0
...
...
@@ -36,4 +36,3 @@ rpl_sp : Bug#16456
rpl_until : Unstable test case, bug#15886
sp-goto : GOTO is currently is disabled - will be fixed in the future
rpl_ndb_log : results are not deterministic
mysqldump : Bug#17443 mysqlimport --use-threads=5 gives crashes
mysql-test/t/mysqldump.test
View file @
c33a64a0
...
...
@@ -1049,7 +1049,6 @@ SET SQL_MODE = @old_sql_mode;
DROP
TRIGGER
tr1
;
DROP
TABLE
t1
;
--
disable_parsing
#
# Added for use-thread option
#
...
...
@@ -1073,4 +1072,3 @@ select * from t2;
drop
table
t1
;
drop
table
t2
;
--
enable_parsing
mysql-test/t/partition.test
View file @
c33a64a0
...
...
@@ -408,4 +408,44 @@ create table t1 (s1 int, unique (s1)) partition by list (s1) (partition x1 VALUE
alter
table
t1
add
partition
(
partition
x3
values
in
(
30
));
drop
table
t1
;
#
# Bug #17432: Partition functions containing NULL values should return
# LONGLONG_MIN
#
CREATE
TABLE
t1
(
f_int1
INTEGER
,
f_int2
INTEGER
,
f_char1
CHAR
(
10
),
f_char2
CHAR
(
10
),
f_charbig
VARCHAR
(
1000
)
)
PARTITION
BY
RANGE
(
f_int1
DIV
2
)
SUBPARTITION
BY
HASH
(
f_int1
)
SUBPARTITIONS
2
(
PARTITION
parta
VALUES
LESS
THAN
(
0
),
PARTITION
partb
VALUES
LESS
THAN
(
5
),
PARTITION
parte
VALUES
LESS
THAN
(
10
),
PARTITION
partf
VALUES
LESS
THAN
(
2147483647
));
INSERT
INTO
t1
SET
f_int1
=
NULL
,
f_int2
=
-
20
,
f_char1
=
CAST
(
-
20
AS
CHAR
),
f_char2
=
CAST
(
-
20
AS
CHAR
),
f_charbig
=
'#NULL#'
;
SELECT
*
FROM
t1
WHERE
f_int1
IS
NULL
;
SELECT
*
FROM
t1
;
drop
table
t1
;
#
# Bug 17430: Crash when SELECT * from t1 where field IS NULL
#
CREATE
TABLE
t1
(
f_int1
INTEGER
,
f_int2
INTEGER
,
f_char1
CHAR
(
10
),
f_char2
CHAR
(
10
),
f_charbig
VARCHAR
(
1000
)
)
PARTITION
BY
LIST
(
MOD
(
f_int1
,
2
))
SUBPARTITION
BY
KEY
(
f_int1
)
(
PARTITION
part1
VALUES
IN
(
-
1
)
(
SUBPARTITION
sp1
,
SUBPARTITION
sp2
),
PARTITION
part2
VALUES
IN
(
0
)
(
SUBPARTITION
sp3
,
SUBPARTITION
sp5
),
PARTITION
part3
VALUES
IN
(
1
)
(
SUBPARTITION
sp4
,
SUBPARTITION
sp6
));
INSERT
INTO
t1
SET
f_int1
=
2
,
f_int2
=
2
,
f_char1
=
'2'
,
f_char2
=
'2'
,
f_charbig
=
'===2==='
;
INSERT
INTO
t1
SET
f_int1
=
2
,
f_int2
=
2
,
f_char1
=
'2'
,
f_char2
=
'2'
,
f_charbig
=
'===2==='
;
SELECT
*
FROM
t1
WHERE
f_int1
IS
NULL
;
drop
table
t1
;
--
echo
End
of
5.1
tests
sql/sql_partition.cc
View file @
c33a64a0
...
...
@@ -2629,6 +2629,29 @@ bool partition_key_modified(TABLE *table, List<Item> &fields)
}
/*
A function to handle correct handling of NULL values in partition
functions.
SYNOPSIS
part_val_int()
item_expr The item expression to evaluate
RETURN VALUES
The value of the partition function, LONGLONG_MIN if any null value
in function
*/
static
inline
longlong
part_val_int
(
Item
*
item_expr
)
{
longlong
value
=
item_expr
->
val_int
();
if
(
item_expr
->
null_value
)
value
=
LONGLONG_MIN
;
return
value
;
}
/*
The next set of functions are used to calculate the partition identity.
A handler sets up a variable that corresponds to one of these functions
...
...
@@ -2725,7 +2748,7 @@ static uint32 get_part_id_hash(uint no_parts,
longlong
*
func_value
)
{
DBUG_ENTER
(
"get_part_id_hash"
);
*
func_value
=
part_
expr
->
val_int
(
);
*
func_value
=
part_
val_int
(
part_expr
);
longlong
int_hash_id
=
*
func_value
%
no_parts
;
DBUG_RETURN
(
int_hash_id
<
0
?
-
int_hash_id
:
int_hash_id
);
}
...
...
@@ -2754,7 +2777,7 @@ static uint32 get_part_id_linear_hash(partition_info *part_info,
{
DBUG_ENTER
(
"get_part_id_linear_hash"
);
*
func_value
=
part_
expr
->
val_int
(
);
*
func_value
=
part_
val_int
(
part_expr
);
DBUG_RETURN
(
get_part_id_from_linear_hash
(
*
func_value
,
part_info
->
linear_hash_mask
,
no_parts
));
...
...
@@ -2892,7 +2915,7 @@ int get_partition_id_list(partition_info *part_info,
longlong
list_value
;
int
min_list_index
=
0
;
int
max_list_index
=
part_info
->
no_list_values
-
1
;
longlong
part_func_value
=
part_
info
->
part_expr
->
val_int
(
);
longlong
part_func_value
=
part_
val_int
(
part_info
->
part_expr
);
DBUG_ENTER
(
"get_partition_id_list"
);
*
func_value
=
part_func_value
;
...
...
@@ -2968,7 +2991,7 @@ uint32 get_list_array_idx_for_endpoint(partition_info *part_info,
longlong
list_value
;
uint
min_list_index
=
0
,
max_list_index
=
part_info
->
no_list_values
-
1
;
/* Get the partitioning function value for the endpoint */
longlong
part_func_value
=
part_
info
->
part_expr
->
val_int
(
);
longlong
part_func_value
=
part_
val_int
(
part_info
->
part_expr
);
while
(
max_list_index
>=
min_list_index
)
{
list_index
=
(
max_list_index
+
min_list_index
)
>>
1
;
...
...
@@ -3002,7 +3025,7 @@ int get_partition_id_range(partition_info *part_info,
uint
min_part_id
=
0
;
uint
max_part_id
=
max_partition
;
uint
loc_part_id
;
longlong
part_func_value
=
part_
info
->
part_expr
->
val_int
(
);
longlong
part_func_value
=
part_
val_int
(
part_info
->
part_expr
);
DBUG_ENTER
(
"get_partition_id_int_range"
);
while
(
max_part_id
>
min_part_id
)
...
...
@@ -3077,7 +3100,7 @@ uint32 get_partition_id_range_for_endpoint(partition_info *part_info,
uint
max_partition
=
part_info
->
no_parts
-
1
;
uint
min_part_id
=
0
,
max_part_id
=
max_partition
,
loc_part_id
;
/* Get the partitioning function value for the endpoint */
longlong
part_func_value
=
part_
info
->
part_expr
->
val_int
(
);
longlong
part_func_value
=
part_
val_int
(
part_info
->
part_expr
);
while
(
max_part_id
>
min_part_id
)
{
loc_part_id
=
(
max_part_id
+
min_part_id
+
1
)
>>
1
;
...
...
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