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
95ea2395
Commit
95ea2395
authored
May 11, 2006
by
jani@a193-229-222-105.elisa-laajakaista.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some fixes that were not done in original merge, compilation revealed.
parent
083f8455
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
2 deletions
+7
-2
client/mysqlimport.c
client/mysqlimport.c
+1
-1
include/violite.h
include/violite.h
+1
-1
sql/sql_show.cc
sql/sql_show.cc
+5
-0
No files found.
client/mysqlimport.c
View file @
95ea2395
...
@@ -406,7 +406,7 @@ static MYSQL *db_connect(char *host, char *database,
...
@@ -406,7 +406,7 @@ static MYSQL *db_connect(char *host, char *database,
if
(
opt_use_ssl
)
if
(
opt_use_ssl
)
mysql_ssl_set
(
mysql
,
opt_ssl_key
,
opt_ssl_cert
,
opt_ssl_ca
,
mysql_ssl_set
(
mysql
,
opt_ssl_key
,
opt_ssl_cert
,
opt_ssl_ca
,
opt_ssl_capath
,
opt_ssl_cipher
);
opt_ssl_capath
,
opt_ssl_cipher
);
mysql_options
(
&
mysql_connection
,
MYSQL_OPT_SSL_VERIFY_SERVER_CERT
,
mysql_options
(
mysql
,
MYSQL_OPT_SSL_VERIFY_SERVER_CERT
,
(
char
*
)
&
opt_ssl_verify_server_cert
);
(
char
*
)
&
opt_ssl_verify_server_cert
);
#endif
#endif
if
(
opt_protocol
)
if
(
opt_protocol
)
...
...
include/violite.h
View file @
95ea2395
...
@@ -121,7 +121,7 @@ struct st_VioSSLFd
...
@@ -121,7 +121,7 @@ struct st_VioSSLFd
*
new_VioSSLAcceptorFd
(
const
char
*
key_file
,
const
char
*
cert_file
,
*
new_VioSSLAcceptorFd
(
const
char
*
key_file
,
const
char
*
cert_file
,
const
char
*
ca_file
,
const
char
*
ca_path
,
const
char
*
ca_file
,
const
char
*
ca_path
,
const
char
*
cipher
);
const
char
*
cipher
);
void
free_vio_ssl_acceptor_fd
(
struct
st_VioSSL
Acceptor
Fd
*
fd
);
void
free_vio_ssl_acceptor_fd
(
struct
st_VioSSLFd
*
fd
);
#endif
/* HAVE_OPENSSL */
#endif
/* HAVE_OPENSSL */
#ifdef HAVE_SMEM
#ifdef HAVE_SMEM
...
...
sql/sql_show.cc
View file @
95ea2395
...
@@ -938,6 +938,11 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet,
...
@@ -938,6 +938,11 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet,
MODE_DB2
|
MODE_DB2
|
MODE_MAXDB
|
MODE_MAXDB
|
MODE_ANSI
))
!=
0
;
MODE_ANSI
))
!=
0
;
bool
limited_mysql_mode
=
(
thd
->
variables
.
sql_mode
&
(
MODE_NO_FIELD_OPTIONS
|
MODE_MYSQL323
|
MODE_MYSQL40
))
!=
0
;
DBUG_ENTER
(
"store_create_info"
);
DBUG_ENTER
(
"store_create_info"
);
DBUG_PRINT
(
"enter"
,(
"table: %s"
,
table
->
s
->
table_name
.
str
));
DBUG_PRINT
(
"enter"
,(
"table: %s"
,
table
->
s
->
table_name
.
str
));
...
...
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