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
6ecd34e6
Commit
6ecd34e6
authored
Mar 21, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merged
sql/sql_yacc.yy: Auto merged
parents
d62d98de
b7ee7877
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
Docs/manual.texi
Docs/manual.texi
+1
-2
include/myisam.h
include/myisam.h
+6
-0
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
No files found.
Docs/manual.texi
View file @
6ecd34e6
...
@@ -18019,8 +18019,7 @@ If you have lots of memory, you should increase the size of
...
@@ -18019,8 +18019,7 @@ If you have lots of memory, you should increase the size of
@code{key_buffer_size}!
@code{key_buffer_size}!
@item -n or --sort-recover
@item -n or --sort-recover
Force @code{myisamchk} to use sorting to resolve the keys even if the
Force @code{myisamchk} to use sorting to resolve the keys even if the
temporary files should be very big. This will not have any effect if you have
temporary files should be very big.
full-text keys in the table.
@item --character-sets-dir=...
@item --character-sets-dir=...
Directory where character sets are stored.
Directory where character sets are stored.
include/myisam.h
View file @
6ecd34e6
...
@@ -295,6 +295,12 @@ extern uint mi_get_pointer_length(ulonglong file_length, uint def);
...
@@ -295,6 +295,12 @@ extern uint mi_get_pointer_length(ulonglong file_length, uint def);
#define T_QUICK (1L << 30)
#define T_QUICK (1L << 30)
#define T_RETRY_WITHOUT_QUICK (1L << 31)
#define T_RETRY_WITHOUT_QUICK (1L << 31)
/* flags used by myisamchk.c or/and ha_myisam.cc that do NOT passed
* to mi_check.c follows:
* */
#define TT_USEFRM 1
#define O_NEW_INDEX 1
/* Bits set in out_flag */
#define O_NEW_INDEX 1
/* Bits set in out_flag */
#define O_NEW_DATA 2
#define O_NEW_DATA 2
#define O_DATA_LOST 4
#define O_DATA_LOST 4
...
...
sql/sql_yacc.yy
View file @
6ecd34e6
...
@@ -1326,7 +1326,7 @@ mi_repair_types:
...
@@ -1326,7 +1326,7 @@ mi_repair_types:
mi_repair_type:
mi_repair_type:
QUICK { Lex->check_opt.flags|= T_QUICK; }
QUICK { Lex->check_opt.flags|= T_QUICK; }
| EXTENDED_SYM { Lex->check_opt.flags|= T_EXTEND; }
| EXTENDED_SYM { Lex->check_opt.flags|= T_EXTEND; }
| USE_FRM {
/*Lex->check_opt.flags|= T_USEFRM;*/
}
| USE_FRM {
Lex->check_opt.sql_flags|= TT_USEFRM;
}
analyze:
analyze:
ANALYZE_SYM table_or_tables
ANALYZE_SYM table_or_tables
...
...
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