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
ad6883c4
Commit
ad6883c4
authored
Nov 10, 2009
by
Alexander Nozdrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build failure.
parent
ecd60471
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
sql/partition_info.cc
sql/partition_info.cc
+6
-1
sql/sql_show.cc
sql/sql_show.cc
+2
-0
No files found.
sql/partition_info.cc
View file @
ad6883c4
...
@@ -2161,7 +2161,7 @@ bool partition_info::init_column_part()
...
@@ -2161,7 +2161,7 @@ bool partition_info::init_column_part()
return
FALSE
;
return
FALSE
;
}
}
bool
partition_info
::
add_column_list_value
(
Item
*
item
)
bool
partition_info
::
add_column_list_value
(
THD
*
thd
,
Item
*
item
)
{
{
return
FALSE
;
return
FALSE
;
}
}
...
@@ -2169,4 +2169,9 @@ int partition_info::add_max_value()
...
@@ -2169,4 +2169,9 @@ int partition_info::add_max_value()
{
{
return
0
;
return
0
;
}
}
void
partition_info
::
print_debug
(
const
char
*
str
,
uint
*
value
)
{
}
#endif
/* WITH_PARTITION_STORAGE_ENGINE */
#endif
/* WITH_PARTITION_STORAGE_ENGINE */
sql/sql_show.cc
View file @
ad6883c4
...
@@ -4955,6 +4955,7 @@ static void store_schema_partitions_record(THD *thd, TABLE *schema_table,
...
@@ -4955,6 +4955,7 @@ static void store_schema_partitions_record(THD *thd, TABLE *schema_table,
return
;
return
;
}
}
#ifdef WITH_PARTITION_STORAGE_ENGINE
static
int
static
int
get_partition_column_description
(
THD
*
thd
,
get_partition_column_description
(
THD
*
thd
,
partition_info
*
part_info
,
partition_info
*
part_info
,
...
@@ -4998,6 +4999,7 @@ get_partition_column_description(THD *thd,
...
@@ -4998,6 +4999,7 @@ get_partition_column_description(THD *thd,
}
}
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
#endif
/* WITH_PARTITION_STORAGE_ENGINE */
static
int
get_schema_partitions_record
(
THD
*
thd
,
TABLE_LIST
*
tables
,
static
int
get_schema_partitions_record
(
THD
*
thd
,
TABLE_LIST
*
tables
,
TABLE
*
table
,
bool
res
,
TABLE
*
table
,
bool
res
,
...
...
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