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
0e891786
Commit
0e891786
authored
Apr 30, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/pem/work/mysql-4.1
into mysql.com:/home/pem/work/mysql-5.0
parents
aa1720f3
4a506d6e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
sql/item_strfunc.cc
sql/item_strfunc.cc
+3
-2
No files found.
sql/item_strfunc.cc
View file @
0e891786
...
...
@@ -2956,7 +2956,8 @@ String *Item_func_compress::val_str(String *str)
return
0
;
}
int4store
(
buffer
.
c_ptr
(),
res
->
length
()
&
0x3FFFFFFF
);
char
*
tmp
=
buffer
.
c_ptr
();
// int4store is a macro; avoid side effects
int4store
(
tmp
,
res
->
length
()
&
0x3FFFFFFF
);
/* This is for the stupid char fields which trim ' ': */
char
*
last_char
=
((
char
*
)
body
)
+
new_size
-
1
;
...
...
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