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
7c625dc5
Commit
7c625dc5
authored
Dec 11, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/my/mysql-4.0 into mashka.mysql.fi:/home/my/mysql-4.0
parents
aaf9a98e
182de7c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
sql/field.cc
sql/field.cc
+4
-2
sql/lex.h
sql/lex.h
+1
-0
No files found.
sql/field.cc
View file @
7c625dc5
...
...
@@ -4220,9 +4220,11 @@ void Field_blob::get_key_image(char *buff,uint length)
char
*
blob
;
if
((
uint32
)
length
>
blob_length
)
{
#ifdef HAVE_purify
/*
Must clear this as we do a memcmp in opt_range.cc to detect
identical keys
*/
bzero
(
buff
+
2
+
blob_length
,
(
length
-
blob_length
));
#endif
length
=
(
uint
)
blob_length
;
}
int2store
(
buff
,
length
);
...
...
sql/lex.h
View file @
7c625dc5
...
...
@@ -80,6 +80,7 @@ static SYMBOL symbols[] = {
{
"CASE"
,
SYM
(
CASE_SYM
),
0
,
0
},
{
"CHAR"
,
SYM
(
CHAR_SYM
),
0
,
0
},
{
"CHARACTER"
,
SYM
(
CHAR_SYM
),
0
,
0
},
{
"CHARSET"
,
SYM
(
CHARSET
),
0
,
0
},
{
"CHANGE"
,
SYM
(
CHANGE
),
0
,
0
},
{
"CHANGED"
,
SYM
(
CHANGED
),
0
,
0
},
{
"CHECK"
,
SYM
(
CHECK_SYM
),
0
,
0
},
...
...
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