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
5d9be4de
Commit
5d9be4de
authored
Sep 22, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portability fix
parent
a9223e94
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
15 deletions
+12
-15
client/mysqltest.c
client/mysqltest.c
+9
-13
sql/gen_lex_hash.cc
sql/gen_lex_hash.cc
+3
-2
No files found.
client/mysqltest.c
View file @
5d9be4de
...
...
@@ -46,19 +46,15 @@
#define MTEST_VERSION "1.10"
#include <my_global.h>
#include <mysql_embed.h>
#include <my_sys.h>
#include <m_string.h>
#include <mysql.h>
#include <mysql_version.h>
#include <mysqld_error.h>
#include <m_ctype.h>
#ifdef OS2
#include <config-os2.h>
#else
#include <my_config.h>
#endif
#include <my_dir.h>
#include <hash.h>
#include <mysqld_error.h>
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
...
...
@@ -1067,18 +1063,18 @@ int close_connection(struct st_query* q)
p
++
;
*
p
=
0
;
for
(
con
=
cons
;
con
<
next_con
;
con
++
)
for
(
con
=
cons
;
con
<
next_con
;
con
++
)
{
if
(
!
strcmp
(
con
->
name
,
name
))
{
if
(
q
->
type
==
Q_DIRTY_CLOSE
)
if
(
q
->
type
==
Q_DIRTY_CLOSE
)
{
if
(
con
->
mysql
.
net
.
vio
)
{
if
(
con
->
mysql
.
net
.
vio
)
{
vio_delete
(
con
->
mysql
.
net
.
vio
);
con
->
mysql
.
net
.
vio
=
0
;
}
vio_delete
(
con
->
mysql
.
net
.
vio
);
con
->
mysql
.
net
.
vio
=
0
;
}
}
mysql_close
(
&
con
->
mysql
);
DBUG_RETURN
(
0
);
...
...
sql/gen_lex_hash.cc
View file @
5d9be4de
...
...
@@ -26,7 +26,8 @@
#include "mysql_version.h"
#include "lex.h"
bool
opt_search
=
0
,
opt_verbose
=
0
;
bool
opt_search
=
0
;
int
opt_verbose
=
0
;
ulong
opt_count
=
100000
;
#define max_allowed_array 8000 // Don't generate bigger arrays than this
...
...
@@ -473,7 +474,7 @@ int main(int argc,char **argv)
MY_INIT
(
argv
[
0
]);
start_value
=
4198729L
;
best_t1
=
6245075L
;
best_t2
=
3686256L
;
best_type
=
4
;
/* mode=5839 add=1
type: 0 */
start_value
=
1060872L
;
best_t1
=
7930739L
;
best_t2
=
4311642L
;
best_type
=
3
;
/* mode=5333 add=6
type: 0 */
if
(
get_options
(
argc
,(
char
**
)
argv
))
exit
(
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