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
a1a0efd3
Commit
a1a0efd3
authored
May 12, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
parents
98912fb9
5697820b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
include/sslopt-longopts.h
include/sslopt-longopts.h
+1
-1
mysql-test/r/rpl_temporary.result
mysql-test/r/rpl_temporary.result
+0
-2
mysql-test/t/rpl_temporary.test
mysql-test/t/rpl_temporary.test
+12
-2
No files found.
include/sslopt-longopts.h
View file @
a1a0efd3
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
0
,
0
,
0
,
0
,
0
,
0
},
0
,
0
,
0
,
0
,
0
,
0
},
#ifdef MYSQL_CLIENT
#ifdef MYSQL_CLIENT
{
"ssl-verify-server-cert"
,
OPT_SSL_VERIFY_SERVER_CERT
,
{
"ssl-verify-server-cert"
,
OPT_SSL_VERIFY_SERVER_CERT
,
"Verify server
s
\"
Common Name
\"
in it'
s cert against hostname used when connecting. This option is disabled by default."
,
"Verify server
's
\"
Common Name
\"
in it
s cert against hostname used when connecting. This option is disabled by default."
,
(
gptr
*
)
&
opt_ssl_verify_server_cert
,
(
gptr
*
)
&
opt_ssl_verify_server_cert
,
(
gptr
*
)
&
opt_ssl_verify_server_cert
,
(
gptr
*
)
&
opt_ssl_verify_server_cert
,
0
,
GET_BOOL
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
0
,
GET_BOOL
,
NO_ARG
,
0
,
0
,
0
,
0
,
0
,
0
},
#endif
#endif
...
...
mysql-test/r/rpl_temporary.result
View file @
a1a0efd3
...
@@ -109,8 +109,6 @@ create temporary table t102 (id int);
...
@@ -109,8 +109,6 @@ create temporary table t102 (id int);
set @session.pseudo_thread_id=200;
set @session.pseudo_thread_id=200;
create temporary table t201 (id int);
create temporary table t201 (id int);
create temporary table `#not_user_table_prefixed_with_hash_sign_no_harm` (id int);
create temporary table `#not_user_table_prefixed_with_hash_sign_no_harm` (id int);
set @con1_id=connection_id();
kill @con1_id;
create table t1(f int);
create table t1(f int);
insert into t1 values (1);
insert into t1 values (1);
select * from t1 /* must be 1 */;
select * from t1 /* must be 1 */;
...
...
mysql-test/t/rpl_temporary.test
View file @
a1a0efd3
...
@@ -169,8 +169,18 @@ create temporary table t102 (id int);
...
@@ -169,8 +169,18 @@ create temporary table t102 (id int);
set
@
session
.
pseudo_thread_id
=
200
;
set
@
session
.
pseudo_thread_id
=
200
;
create
temporary
table
t201
(
id
int
);
create
temporary
table
t201
(
id
int
);
create
temporary
table
`#not_user_table_prefixed_with_hash_sign_no_harm`
(
id
int
);
create
temporary
table
`#not_user_table_prefixed_with_hash_sign_no_harm`
(
id
int
);
set
@
con1_id
=
connection_id
();
kill
@
con1_id
;
#
# Don't kill our own connection to the server as
# the result code differs depending on platform.
#
# Select the id to kill into a variable of mysqltest
let
$con1_id
=
`select connection_id()`
;
# Switch connection to avoid killing our own connection
connection
master
;
--
disable_query_log
eval
kill
$con1_id
;
--
enable_query_log
#now do something to show that slave is ok after DROP temp tables
#now do something to show that slave is ok after DROP temp tables
connection
master
;
connection
master
;
...
...
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