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
fed395c7
Commit
fed395c7
authored
Oct 30, 2001
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/home/bk/mysql into hundin.mysql.fi:/my/bk/mysql
parents
bbd88314
7b1cfb63
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
45 additions
and
11 deletions
+45
-11
BUILD/FINISH.sh
BUILD/FINISH.sh
+1
-1
BUILD/SETUP.sh
BUILD/SETUP.sh
+8
-1
Docs/manual.texi
Docs/manual.texi
+8
-6
innobase/include/univ.i
innobase/include/univ.i
+5
-1
sql/sql_lex.cc
sql/sql_lex.cc
+23
-2
No files found.
BUILD/FINISH.sh
View file @
fed395c7
...
@@ -20,7 +20,7 @@ then
...
@@ -20,7 +20,7 @@ then
(cd gemini && aclocal && autoheader && aclocal && automake && autoconf)
(cd gemini && aclocal && autoheader && aclocal && automake && autoconf)
fi
fi
CFLAGS=
\"
$cflags
\"
CXX=
gcc
CXXFLAGS=
\"
$cxxflags
\"
$configure
"
CFLAGS=
\"
$cflags
\"
CXX=
$CXX
CXXFLAGS=
\"
$cxxflags
\"
$configure
"
if
[
-z
"
$just_configure
"
]
if
[
-z
"
$just_configure
"
]
then
then
...
...
BUILD/SETUP.sh
View file @
fed395c7
...
@@ -40,7 +40,7 @@ c_warnings="$global_warnings -Wunused"
...
@@ -40,7 +40,7 @@ c_warnings="$global_warnings -Wunused"
cxx_warnings
=
"
$global_warnings
-Woverloaded-virtual -Wextern-inline -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor"
cxx_warnings
=
"
$global_warnings
-Woverloaded-virtual -Wextern-inline -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor"
alpha_cflags
=
"-mcpu=ev6 -Wa,-mev6"
# Not used yet
alpha_cflags
=
"-mcpu=ev6 -Wa,-mev6"
# Not used yet
pentium_cflags
=
"-mpentiumpro"
pentium_cflags
=
"-m
cpu=
pentiumpro"
sparc_cflags
=
""
sparc_cflags
=
""
# be as fast as we can be without losing our ability to backtrace
# be as fast as we can be without losing our ability to backtrace
...
@@ -65,3 +65,10 @@ then
...
@@ -65,3 +65,10 @@ then
else
else
make
=
make
make
=
make
fi
fi
if
gcc
-v
2>&1 |
grep
'version 3'
>
/dev/null 2>&1
then
CXX
=
c++
else
CXX
=
gcc
fi
Docs/manual.texi
View file @
fed395c7
...
@@ -5948,9 +5948,6 @@ Change sort to allocate memory in ``hunks'' to get better memory utilization.
...
@@ -5948,9 +5948,6 @@ Change sort to allocate memory in ``hunks'' to get better memory utilization.
@code{Field_decimal::store(const char *from,uint len)} must be recoded
@code{Field_decimal::store(const char *from,uint len)} must be recoded
to fix this.
to fix this.
@item
@item
Fix @code{mysql.cc} to do fewer @code{malloc()} calls when hashing field
names.
@item
Functions:
Functions:
ADD_TO_SET(value,set) and REMOVE_FROM_SET(value,set)
ADD_TO_SET(value,set) and REMOVE_FROM_SET(value,set)
@item
@item
...
@@ -5985,8 +5982,6 @@ join type.
...
@@ -5985,8 +5982,6 @@ join type.
@item
@item
Oracle like @code{CONNECT BY PRIOR ...} to search hierarchy structures.
Oracle like @code{CONNECT BY PRIOR ...} to search hierarchy structures.
@item
@item
@code{RENAME DATABASE}
@item
@code{mysqladmin copy database new-database}. -- Requires COPY command to be
@code{mysqladmin copy database new-database}. -- Requires COPY command to be
added to @code{mysqld}
added to @code{mysqld}
@item
@item
...
@@ -46845,6 +46840,13 @@ not yet 100% confident in this code.
...
@@ -46845,6 +46840,13 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.44
@appendixsubsec Changes in release 3.23.44
@itemize @bullet
@itemize @bullet
@item
@item
Fixed problem with sjis character strings used within quoted table names.
@item
Fixed coredump when using @code{CREATE ... FULLTEXT} keys with other table
handlers than MyISAM.
@item
Add missing @code{InnoDB} variables to @code{SHOW VARIABLES}.
@item
Don't use @code{signal()} on windows because this appears to not be
Don't use @code{signal()} on windows because this appears to not be
100 % reliable.
100 % reliable.
@item
@item
...
@@ -46854,7 +46856,7 @@ that had @code{NULL} values.
...
@@ -46854,7 +46856,7 @@ that had @code{NULL} values.
Fixed bug when doing @code{LEFT JOIN ... ON (column_name = constant) WHERE column_name = constant}.
Fixed bug when doing @code{LEFT JOIN ... ON (column_name = constant) WHERE column_name = constant}.
@item
@item
When using replications, aborted queries that contained @code{%} could cause
When using replications, aborted queries that contained @code{%} could cause
a core dum.
a core dum
p
.
@item
@item
TCP_NODELAY was not used on some systems. (Speed problem).
TCP_NODELAY was not used on some systems. (Speed problem).
@end itemize
@end itemize
innobase/include/univ.i
View file @
fed395c7
...
@@ -104,8 +104,12 @@ memory is read outside the allocated blocks. */
...
@@ -104,8 +104,12 @@ memory is read outside the allocated blocks. */
#
define
UNIV_INLINE
__inline
#
define
UNIV_INLINE
__inline
#
else
#
else
/* config.h contains the right def for 'inline' for the current compiler */
/* config.h contains the right def for 'inline' for the current compiler */
#
if
(
__GNUC__
==
2
)
#
define
UNIV_INLINE
extern
inline
#
define
UNIV_INLINE
extern
inline
#
else
/* extern inline doesn't work with gcc 3.0.2 */
#
define
UNIV_INLINE
static
inline
#
endif
#
endif
#
endif
#
else
#
else
...
...
sql/sql_lex.cc
View file @
fed395c7
...
@@ -601,8 +601,29 @@ int yylex(void *arg)
...
@@ -601,8 +601,29 @@ int yylex(void *arg)
case
STATE_USER_VARIABLE_DELIMITER
:
case
STATE_USER_VARIABLE_DELIMITER
:
lex
->
tok_start
=
lex
->
ptr
;
// Skipp first `
lex
->
tok_start
=
lex
->
ptr
;
// Skipp first `
while
((
c
=
yyGet
())
&&
state_map
[
c
]
!=
STATE_USER_VARIABLE_DELIMITER
&&
#ifdef USE_MB
c
!=
(
uchar
)
NAMES_SEP_CHAR
)
;
if
(
use_mb
(
default_charset_info
))
{
while
((
c
=
yyGet
())
&&
state_map
[
c
]
!=
STATE_USER_VARIABLE_DELIMITER
&&
c
!=
(
uchar
)
NAMES_SEP_CHAR
)
{
if
(
my_ismbhead
(
default_charset_info
,
c
))
{
int
l
;
if
((
l
=
my_ismbchar
(
default_charset_info
,
(
const
char
*
)
lex
->
ptr
-
1
,
(
const
char
*
)
lex
->
end_of_query
))
==
0
)
break
;
lex
->
ptr
+=
l
-
1
;
}
}
}
else
#endif
{
while
((
c
=
yyGet
())
&&
state_map
[
c
]
!=
STATE_USER_VARIABLE_DELIMITER
&&
c
!=
(
uchar
)
NAMES_SEP_CHAR
)
;
}
yylval
->
lex_str
=
get_token
(
lex
,
yyLength
());
yylval
->
lex_str
=
get_token
(
lex
,
yyLength
());
if
(
state_map
[
c
]
==
STATE_USER_VARIABLE_DELIMITER
)
if
(
state_map
[
c
]
==
STATE_USER_VARIABLE_DELIMITER
)
yySkip
();
// Skipp end `
yySkip
();
// Skipp end `
...
...
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