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
d9574395
Commit
d9574395
authored
Sep 15, 2012
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge
parents
3aa13f8f
88049784
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
TODO
TODO
+7
-5
storage/myisam/mi_create.c
storage/myisam/mi_create.c
+1
-2
No files found.
TODO
View file @
d9574395
...
...
@@ -15,6 +15,8 @@ Featured copied/merged
(Including support in all clients)
- Added Ssl_server_not_before & Ssl_server_not_after variables
(Including changes to yassl)
- Added all mysql systems tables
- TRANSACTION READ ONLY | READ WRITE
Features recoded
- Better error messages
...
...
@@ -26,17 +28,17 @@ Fetures half done:
- Merge sql/rpl_mi.cc (To get Sys_ssl_crl & crlpath)
Short time TODO:
- Add support for TRANSACTION READ ONLY | READ WRITE in sql_yacc.yy
(support for variable tx_read_only)
- Add test cases for InnoDB
- merge hostname.cc / hostname.h
- add support for host_error()
- Enable performance_schema.host_cache in scripts/mysql_system_tables.sql
- Add full support for timestamp. (remove timestamp handling from ha_write())
- Add full support for automatic timestamp.
(remove timestamp handling from ha_write())
- Timour is working on this
- Add
Sys_my_bind_addr(); Needed for perfschema
- Add Sys_my_bind_addr(); Needed for perfschema
- Add THD_STAGE_INFO everywhere.
...
...
storage/myisam/mi_create.c
View file @
d9574395
...
...
@@ -473,7 +473,6 @@ int mi_create(const char *name,uint keys,MI_KEYDEF *keydefs,
key_del
[
i
]
=
HA_OFFSET_ERROR
;
unique_key_parts
=
0
;
offset
=
reclength
-
uniques
*
MI_UNIQUE_HASH_LENGTH
;
for
(
i
=
0
,
uniquedef
=
uniquedefs
;
i
<
uniques
;
i
++
,
uniquedef
++
)
{
uniquedef
->
key
=
keys
+
i
;
...
...
@@ -739,7 +738,7 @@ int mi_create(const char *name,uint keys,MI_KEYDEF *keydefs,
#endif
}
/* Create extra keys for unique definitions */
offset
=
reclength
-
uniques
*
MI_UNIQUE_HASH_LENGTH
;
offset
=
real_reclength
-
uniques
*
MI_UNIQUE_HASH_LENGTH
;
bzero
((
char
*
)
&
tmp_keydef
,
sizeof
(
tmp_keydef
));
bzero
((
char
*
)
&
tmp_keyseg
,
sizeof
(
tmp_keyseg
));
for
(
i
=
0
;
i
<
uniques
;
i
++
)
...
...
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