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
ccbab519
Commit
ccbab519
authored
Aug 06, 2005
by
pappa@c-8b0ae253.1238-1-64736c10.cust.bredbandsbolaget.se
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge fix
parent
db8e0b73
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
38 deletions
+34
-38
mysql-test/t/ndb_partition_key.test
mysql-test/t/ndb_partition_key.test
+1
-1
mysql-test/t/partition_error.test
mysql-test/t/partition_error.test
+29
-29
sql/share/errmsg.txt
sql/share/errmsg.txt
+4
-8
No files found.
mysql-test/t/ndb_partition_key.test
View file @
ccbab519
...
...
@@ -23,7 +23,7 @@ select * from t1;
drop
table
t1
;
# only support for partition key on primary key
--
error
1460
--
error
ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF
CREATE
TABLE
t1
(
a
int
,
b
int
,
c
int
,
d
int
,
PRIMARY
KEY
(
a
,
b
))
ENGINE
=
NDB
PARTITION
BY
KEY
(
c
);
...
...
mysql-test/t/partition_error.test
View file @
ccbab519
...
...
@@ -17,7 +17,7 @@ partitions 3
#
# Partition by key list, number of partitions defined, no partition defined
#
--
error
1448
--
error
ER_PARTITIONS_MUST_BE_DEFINED_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -29,7 +29,7 @@ partitions 2;
#
# Partition by key list, wrong result type
#
--
error
1447
--
error
ER_PARTITION_FUNC_NOT_ALLOWED_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -74,7 +74,7 @@ partitions 3
#
# Partition by key, invalid field in field list
#
--
error
1444
--
error
ER_FIELD_NOT_FOUND_PART_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -103,7 +103,7 @@ partitions 3
#
# Partition by hash, invalid result type
#
--
error
1447
--
error
ER_PARTITION_FUNC_NOT_ALLOWED_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -170,7 +170,7 @@ partitions 2
#
# Partition by hash, values less than error
#
--
error
1437
--
error
ER_PARTITION_WRONG_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -184,7 +184,7 @@ partitions 2
#
# Partition by hash, values in error
#
--
error
1437
--
error
ER_PARTITION_WRONG_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -198,7 +198,7 @@ partitions 2
#
# Partition by hash, values in error
#
--
error
1437
--
error
ER_PARTITION_WRONG_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -212,7 +212,7 @@ partitions 2
#
# Subpartition by key, no partitions defined, single field
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -224,7 +224,7 @@ subpartition by key (b);
#
# Subpartition by key, no partitions defined, list of fields
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -236,7 +236,7 @@ subpartition by key (a, b);
#
# Subpartition by hash, no partitions defined
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -248,7 +248,7 @@ subpartition by hash (a+b);
#
# Subpartition by key, no partitions defined, single field
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -260,7 +260,7 @@ subpartition by key (b);
#
# Subpartition by key, no partitions defined, list of fields
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -272,7 +272,7 @@ subpartition by key (a, b);
#
# Subpartition by hash, no partitions defined
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -296,7 +296,7 @@ subpartition by hash (rand(a+b));
#
# Subpartition by hash, wrong subpartition function
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -324,7 +324,7 @@ subpartition by key (a+b)
#
# Subpartition by hash, no partitions defined, wrong subpartition function
#
--
error
1444
--
error
ER_FIELD_NOT_FOUND_PART_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -338,7 +338,7 @@ subpartition by key (a,d)
#
# Subpartition by hash, no partitions defined, wrong subpartition function
#
--
error
1456
--
error
ER_SUBPARTITION_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -364,7 +364,7 @@ subpartition by hash (a+d)
#
# Partition by range, no partition => error
#
--
error
1448
--
error
ER_PARTITIONS_MUST_BE_DEFINED_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -403,7 +403,7 @@ partitions 2
#
# Partition by range, constant partition function not allowed
#
--
error
1442
--
error
ER_CONST_EXPR_IN_PARTITION_FUNC_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -417,7 +417,7 @@ partitions 2
#
# Partition by range, no values less than definition
#
--
error
1436
--
error
ER_PARTITION_REQUIRES_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -431,7 +431,7 @@ partitions 2
#
# Partition by range, no values in definition allowed
#
--
error
1437
--
error
ER_PARTITION_WRONG_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -445,7 +445,7 @@ partitions 2
#
# Partition by range, values in error
#
--
error
1437
--
error
ER_PARTITION_WRONG_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -501,7 +501,7 @@ partitions 2
#
# Partition by range, not increasing ranges
#
--
error
1449
--
error
ER_RANGE_NOT_INCREASING_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -515,7 +515,7 @@ partitions 2
#
# Partition by range, wrong result type of partition function
#
--
error
1447
--
error
ER_PARTITION_FUNC_NOT_ALLOWED_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -607,7 +607,7 @@ subpartition by list (a+b)
#
# Partition by list, no partition => error
#
--
error
1448
--
error
ER_PARTITIONS_MUST_BE_DEFINED_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -618,7 +618,7 @@ partition by list (a);
#
# Partition by list, constant partition function not allowed
#
--
error
1442
--
error
ER_CONST_EXPR_IN_PARTITION_FUNC_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -646,7 +646,7 @@ partitions 2
#
# Partition by list, no values in definition
#
--
error
1436
--
error
ER_PARTITION_REQUIRES_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -660,7 +660,7 @@ partitions 2
#
# Partition by list, values less than error
#
--
error
1437
--
error
ER_PARTITION_WRONG_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -674,7 +674,7 @@ partitions 2
#
# Partition by list, no values in definition
#
--
error
1436
--
error
ER_PARTITION_REQUIRES_VALUES_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
@@ -688,7 +688,7 @@ partitions 2
#
# Partition by list, duplicate values
#
--
error
1451
--
error
ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR
CREATE
TABLE
t1
(
a
int
not
null
,
b
int
not
null
,
...
...
sql/share/errmsg.txt
View file @
ccbab519
...
...
@@ -5384,6 +5384,10 @@ ER_CANT_CREATE_FEDERATED_TABLE
eng "Can't create federated table. Foreign data src error : '%-.64s'"
ER_TRG_IN_WRONG_SCHEMA
eng "Trigger in wrong schema"
ER_STACK_OVERRUN_NEED_MORE
eng "Thread stack overrun: %ld bytes used of a %ld byte stack, and %ld bytes needed. Use 'mysqld -O thread_stack=#' to specify a bigger stack."
ER_TOO_LONG_BODY 42000 S1009
eng "Routine body for '%-.100s' is too long"
ER_PARTITION_REQUIRES_VALUES_ERROR
eng "%s PARTITIONING requires definition of VALUES %s for each partition"
swe "%s PARTITIONering krver definition av VALUES %s fr varje partition"
...
...
@@ -5462,11 +5466,3 @@ ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF
ER_NO_PARTS_ERROR
eng "Number of %s = 0 is not an allowed value"
swe "Antal %s = 0 r inte ett tillten vrde"
ER_CANT_CREATE_FEDERATED_TABLE
eng "Can't create federated table. Foreign data src error : '%-.64s'"
ER_TRG_IN_WRONG_SCHEMA
eng "Trigger in wrong schema"
ER_STACK_OVERRUN_NEED_MORE
eng "Thread stack overrun: %ld bytes used of a %ld byte stack, and %ld bytes needed. Use 'mysqld -O thread_stack=#' to specify a bigger stack."
ER_TOO_LONG_BODY 42000 S1009
eng "Routine body for '%-.100s' is too long"
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