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
b55f0216
Commit
b55f0216
authored
Sep 26, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
COUNT(*) for merge can be longlong even if it's long for MyISAM
parent
9018e9e7
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 @
b55f0216
...
...
@@ -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 @
b55f0216
...
...
@@ -192,8 +192,8 @@ class handler :public Sql_alloc
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