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
16969a48
Commit
16969a48
authored
Aug 28, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-3.23
into narttu.mysql.fi:/my/mysql-3.23
parents
b8de463e
bda8edf1
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
198 additions
and
355 deletions
+198
-355
isam/open.c
isam/open.c
+3
-0
isam/test_all.res
isam/test_all.res
+17
-354
myisam/mi_dynrec.c
myisam/mi_dynrec.c
+1
-1
myisam/mi_open.c
myisam/mi_open.c
+2
-0
mysql-test/r/isam.result
mysql-test/r/isam.result
+2
-0
mysql-test/t/isam.test
mysql-test/t/isam.test
+173
-0
No files found.
isam/open.c
View file @
16969a48
...
...
@@ -415,6 +415,9 @@ static void setup_functions(register ISAM_SHARE *share)
share
->
read_rnd
=
_nisam_read_rnd_dynamic_record
;
share
->
delete_record
=
_nisam_delete_dynamic_record
;
share
->
compare_record
=
_nisam_cmp_dynamic_record
;
/* add bits used to pack data to pack_reclength for faster allocation */
share
->
base
.
pack_reclength
+=
share
->
base
.
pack_bits
;
if
(
share
->
base
.
blobs
)
{
share
->
update_record
=
_nisam_update_blob_record
;
...
...
isam/test_all.res
View file @
16969a48
This diff is collapsed.
Click to expand it.
myisam/mi_dynrec.c
View file @
16969a48
...
...
@@ -62,7 +62,7 @@ int _mi_write_blob_record(MI_INFO *info, const byte *record)
extra
=
ALIGN_SIZE
(
MI_MAX_DYN_BLOCK_HEADER
)
+
MI_SPLIT_LENGTH
+
MI_DYN_DELETE_BLOCK_HEADER
+
1
;
reclength
=
(
info
->
s
->
base
.
pack_reclength
+
info
->
s
->
base
.
pack_bits
+
reclength
=
(
info
->
s
->
base
.
pack_reclength
+
_my_calc_total_blob_length
(
info
,
record
)
+
extra
);
if
(
reclength
>
MI_DYN_MAX_ROW_LENGTH
)
{
...
...
myisam/mi_open.c
View file @
16969a48
...
...
@@ -602,6 +602,8 @@ void mi_setup_functions(register MYISAM_SHARE *share)
share
->
compare_unique
=
_mi_cmp_dynamic_unique
;
share
->
calc_checksum
=
mi_checksum
;
/* add bits used to pack data to pack_reclength for faster allocation */
share
->
base
.
pack_reclength
+=
share
->
base
.
pack_bits
;
if
(
share
->
base
.
blobs
)
{
share
->
update_record
=
_mi_update_blob_record
;
...
...
mysql-test/r/isam.result
View file @
16969a48
...
...
@@ -8,3 +8,5 @@ Table Op Msg_type Msg_text
test.t1 repair status OK
Table Op Msg_type Msg_text
test.t1 check status OK
Table Op Msg_type Msg_text
test.t1 check status OK
mysql-test/t/isam.test
View file @
16969a48
This diff is collapsed.
Click to expand it.
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