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
7a7a0ae8
Commit
7a7a0ae8
authored
Sep 26, 2002
by
serg@build.mysql2.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COUNT(*) for merge can be longlong even if it's long for MyISAM
parent
dd1ed20d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
sql/ha_myisammrg.cc
sql/ha_myisammrg.cc
+2
-2
sql/handler.h
sql/handler.h
+2
-2
No files found.
sql/ha_myisammrg.cc
View file @
7a7a0ae8
...
...
@@ -184,8 +184,8 @@ void ha_myisammrg::info(uint flag)
{
MYMERGE_INFO
info
;
(
void
)
myrg_status
(
file
,
&
info
,
flag
);
records
=
(
ha_rows
)
info
.
records
;
deleted
=
(
ha_rows
)
info
.
deleted
;
records
=
info
.
records
;
deleted
=
info
.
deleted
;
data_file_length
=
info
.
data_file_length
;
errkey
=
info
.
errkey
;
table
->
keys_in_use
=
set_bits
(
key_map
,
table
->
keys
);
...
...
sql/handler.h
View file @
7a7a0ae8
...
...
@@ -192,8 +192,8 @@ public:
byte
*
dupp_ref
;
/* Pointer to dupp row */
uint
ref_length
;
/* Length of ref (1-8) */
uint
block_size
;
/* index block size */
ha_rows
records
;
/* Records i datafilen */
ha_rows
deleted
;
/* Deleted records */
ulonglong
records
;
/* Records i datafilen */
ulonglong
deleted
;
/* Deleted records */
ulonglong
data_file_length
;
/* Length off data file */
ulonglong
max_data_file_length
;
/* Length off data file */
ulonglong
index_file_length
;
...
...
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