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
fc3e066f
Commit
fc3e066f
authored
Dec 15, 2001
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
freebsd fix for openssl
horrible bug fixed
parent
15f84e26
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
include/my_global.h
include/my_global.h
+2
-2
myisam/ft_static.c
myisam/ft_static.c
+1
-1
mysql-test/r/fulltext_var.result
mysql-test/r/fulltext_var.result
+1
-1
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
No files found.
include/my_global.h
View file @
fc3e066f
...
...
@@ -188,8 +188,8 @@
# endif
#endif
/* TIME_WITH_SYS_TIME */
#ifdef HAVE_UNISTD_H
#if
def HAVE_OPENSSL
#define crypt
dummy
#if
defined(HAVE_OPENSSL) && !defined(__FreeBSD__) && !defined(NeXT)
#define crypt
unistd_crypt
#endif
#include <unistd.h>
#ifdef HAVE_OPENSSL
...
...
myisam/ft_static.c
View file @
fc3e066f
...
...
@@ -21,7 +21,7 @@
ulong
ft_min_word_len
=
4
;
ulong
ft_max_word_len
=
HA_FT_MAXLEN
;
ulong
ft_max_word_len_for_sort
=
20
;
const
char
*
ft_boolean_syntax
=
"+ -><()~*"
;
const
char
*
ft_boolean_syntax
=
"+ -><()~*
:
\"\"
&|
"
;
const
MI_KEYSEG
ft_keysegs
[
FT_SEGS
]
=
{
{
...
...
mysql-test/r/fulltext_var.result
View file @
fc3e066f
...
...
@@ -3,4 +3,4 @@ Variable_name Value
ft_min_word_len 4
ft_max_word_len 254
ft_max_word_len_for_sort 20
ft_boolean_syntax + -><()~*
ft_boolean_syntax + -><()~*
:""&|
sql/sql_parse.cc
View file @
fc3e066f
...
...
@@ -875,8 +875,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
}
thd
->
free_list
=
0
;
table_list
.
name
=
table_list
.
real_name
=
thd
->
strdup
(
packet
);
thd
->
query_length
=
strlen
(
thd
->
query
);
thd
->
query
=
fields
=
thd
->
strdup
(
strend
(
packet
)
+
1
);
thd
->
query_length
=
strlen
(
thd
->
query
);
mysql_log
.
write
(
thd
,
command
,
"%s %s"
,
table_list
.
real_name
,
fields
);
remove_escape
(
table_list
.
real_name
);
// This can't have wildcards
...
...
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