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
7084b494
Commit
7084b494
authored
Jan 26, 2005
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
innobase/include/univ.i
remove a change that broke the test
parent
555680e0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
innobase/include/univ.i
innobase/include/univ.i
+2
-4
sql/item_create.cc
sql/item_create.cc
+3
-2
No files found.
innobase/include/univ.i
View file @
7084b494
...
...
@@ -80,10 +80,8 @@ memory is read outside the allocated blocks. */
/* Make a non-inline debug version */
#
ifdef
DBUG_ON
#
define
UNIV_DEBUG
#
endif
/* DBUG_ON */
/*
#define UNIV_DEBUG
#define UNIV_MEM_DEBUG
#define UNIV_IBUF_DEBUG
#define UNIV_SYNC_DEBUG
...
...
@@ -121,7 +119,7 @@ by one. */
/* Definition for inline version */
#
ifdef
__WIN__
#
define
UNIV_INLINE
__inline
#
define
UNIV_INLINE
__inline
#
else
/* config.h contains the right def for 'inline' for the current compiler */
#
if
(
__GNUC__
==
2
)
...
...
sql/item_create.cc
View file @
7084b494
...
...
@@ -377,13 +377,14 @@ Item *create_func_space(Item *a)
{
uint
dummy_errors
;
sp
=
new
Item_string
(
""
,
0
,
cs
);
sp
->
str_value
.
copy
(
" "
,
1
,
&
my_charset_latin1
,
cs
,
&
dummy_errors
);
if
(
sp
)
sp
->
str_value
.
copy
(
" "
,
1
,
&
my_charset_latin1
,
cs
,
&
dummy_errors
);
}
else
{
sp
=
new
Item_string
(
" "
,
1
,
cs
);
}
return
new
Item_func_repeat
(
sp
,
a
)
;
return
sp
?
new
Item_func_repeat
(
sp
,
a
)
:
0
;
}
Item
*
create_func_soundex
(
Item
*
a
)
...
...
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