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
0783b57b
Commit
0783b57b
authored
Oct 18, 2006
by
stewart@willster.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#19914 SELECT COUNT(*) sometimes returns MAX_INT on cluster tables
update partition engine for handler::info returning int
parent
1d70db17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sql/ha_partition.cc
sql/ha_partition.cc
+2
-2
sql/ha_partition.h
sql/ha_partition.h
+1
-1
No files found.
sql/ha_partition.cc
View file @
0783b57b
...
...
@@ -4214,7 +4214,7 @@ void ha_partition::include_partition_fields_in_used_fields()
retrieving statistics data.
*/
void
ha_partition
::
info
(
uint
flag
)
int
ha_partition
::
info
(
uint
flag
)
{
handler
*
file
,
**
file_array
;
DBUG_ENTER
(
"ha_partition:info"
);
...
...
@@ -4378,7 +4378,7 @@ void ha_partition::info(uint flag)
stats
.
update_time
=
file
->
stats
.
update_time
;
}
while
(
*
(
++
file_array
));
}
DBUG_
VOID_RETURN
;
DBUG_
RETURN
(
0
)
;
}
...
...
sql/ha_partition.h
View file @
0783b57b
...
...
@@ -449,7 +449,7 @@ public:
purposes.
-------------------------------------------------------------------------
*/
virtual
void
info
(
uint
);
virtual
int
info
(
uint
);
void
get_dynamic_partition_info
(
PARTITION_INFO
*
stat_info
,
uint
part_id
);
virtual
int
extra
(
enum
ha_extra_function
operation
);
...
...
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