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
fe9c6124
Commit
fe9c6124
authored
Apr 05, 2006
by
mikron@mikael-ronstr-ms-dator.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge mikael@orca:/home/mikael/bug18198
into mikael-ronstr-ms-dator.local:/Users/mikron/bug18198
parents
59f20d29
d1b2f479
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
0 deletions
+21
-0
sql/item.h
sql/item.h
+6
-0
sql/partition_info.cc
sql/partition_info.cc
+12
-0
sql/share/errmsg.txt
sql/share/errmsg.txt
+3
-0
No files found.
sql/item.h
View file @
fe9c6124
...
@@ -744,6 +744,11 @@ class Item {
...
@@ -744,6 +744,11 @@ class Item {
virtual
bool
find_item_in_field_list_processor
(
byte
*
arg
)
{
return
0
;
}
virtual
bool
find_item_in_field_list_processor
(
byte
*
arg
)
{
return
0
;
}
virtual
bool
change_context_processor
(
byte
*
context
)
{
return
0
;
}
virtual
bool
change_context_processor
(
byte
*
context
)
{
return
0
;
}
virtual
bool
reset_query_id_processor
(
byte
*
query_id
)
{
return
0
;
}
virtual
bool
reset_query_id_processor
(
byte
*
query_id
)
{
return
0
;
}
virtual
bool
check_partition_func_processor
(
byte
*
bool_arg
)
{
*
(
bool
*
)
bool_arg
=
FALSE
;
return
0
;
}
virtual
Item
*
equal_fields_propagator
(
byte
*
arg
)
{
return
this
;
}
virtual
Item
*
equal_fields_propagator
(
byte
*
arg
)
{
return
this
;
}
virtual
Item
*
set_no_const_sub
(
byte
*
arg
)
{
return
this
;
}
virtual
Item
*
set_no_const_sub
(
byte
*
arg
)
{
return
this
;
}
...
@@ -1202,6 +1207,7 @@ class Item_field :public Item_ident
...
@@ -1202,6 +1207,7 @@ class Item_field :public Item_ident
result_field
->
query_id
=
field
->
query_id
;
result_field
->
query_id
=
field
->
query_id
;
return
0
;
return
0
;
}
}
bool
check_partition_func_processor
(
byte
*
bool_arg
)
{
return
0
;
}
void
cleanup
();
void
cleanup
();
Item_equal
*
find_item_equal
(
COND_EQUAL
*
cond_equal
);
Item_equal
*
find_item_equal
(
COND_EQUAL
*
cond_equal
);
Item
*
equal_fields_propagator
(
byte
*
arg
);
Item
*
equal_fields_propagator
(
byte
*
arg
);
...
...
sql/partition_info.cc
View file @
fe9c6124
...
@@ -655,8 +655,20 @@ bool partition_info::check_partition_info(handlerton **eng_type,
...
@@ -655,8 +655,20 @@ bool partition_info::check_partition_info(handlerton **eng_type,
uint
i
,
tot_partitions
;
uint
i
,
tot_partitions
;
bool
result
=
TRUE
;
bool
result
=
TRUE
;
char
*
same_name
;
char
*
same_name
;
bool
part_expression_ok
=
TRUE
;
DBUG_ENTER
(
"partition_info::check_partition_info"
);
DBUG_ENTER
(
"partition_info::check_partition_info"
);
if
(
part_type
!=
HASH_PARTITION
||
!
list_of_part_fields
)
part_expr
->
walk
(
Item
::
check_partition_func_processor
,
(
byte
*
)
&
part_expression_ok
);
if
(
is_sub_partitioned
()
&&
!
list_of_subpart_fields
)
subpart_expr
->
walk
(
Item
::
check_partition_func_processor
,
(
byte
*
)
&
part_expression_ok
);
if
(
!
part_expression_ok
)
{
my_error
(
ER_PARTITION_FUNC_NOT_ALLOWED
,
MYF
(
0
));
goto
end
;
}
if
(
unlikely
(
!
is_sub_partitioned
()
&&
if
(
unlikely
(
!
is_sub_partitioned
()
&&
!
(
use_default_subpartitions
&&
use_default_no_subpartitions
)))
!
(
use_default_subpartitions
&&
use_default_no_subpartitions
)))
{
{
...
...
sql/share/errmsg.txt
View file @
fe9c6124
...
@@ -5826,3 +5826,6 @@ ER_NDB_CANT_SWITCH_BINLOG_FORMAT
...
@@ -5826,3 +5826,6 @@ ER_NDB_CANT_SWITCH_BINLOG_FORMAT
eng "The NDB cluster engine does not support changing the binlog format on the fly yet"
eng "The NDB cluster engine does not support changing the binlog format on the fly yet"
ER_PARTITION_NO_TEMPORARY
ER_PARTITION_NO_TEMPORARY
eng "Cannot create temporary table with partitions"
eng "Cannot create temporary table with partitions"
ER_PARTITION_FUNCTION_NOT_ALLOWED
eng "This partition function is not allowed"
swe "Denna partitioneringsfunktion r inte tillten"
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