You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fix for crash in connection accept code Was missing a mutex in timer for X connection timeout - Updated tests that print version numbers so that they don't get printed and break diffs - Fixed some warnings in Windows - Removed outdated/obsolete documentation for plugin - Fix for protobuf memleak (cherry picked from commit c82f0aa9454ff7799371567c9a6ee5f223383e8c) Conflicts: rapid/plugin/x/protocol/conf.py
Copy file name to clipboardExpand all lines: mysql-test/suite/xplugin/r/installxplugin.result
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -53,9 +53,9 @@ RUN show variables like 'mysqlx_min_worker_threads%'
53
53
Variable_name Value
54
54
mysqlx_min_worker_threads 2
55
55
0 rows affected
56
-
RUN SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%'
RUN SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%'
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
show variables like 'mysqlx_idle_worker_thread_timeout%';
@@ -177,8 +177,8 @@ show variables like 'mysqlx_max_connections%';
177
177
Variable_name Value
178
178
show variables like 'mysqlx_min_worker_threads%';
179
179
Variable_name Value
180
-
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
@@ -259,9 +259,9 @@ RUN show variables like 'mysqlx_min_worker_threads%'
259
259
Variable_name Value
260
260
mysqlx_min_worker_threads 50
261
261
0 rows affected
262
-
RUN SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%'
RUN SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%'
@@ -356,9 +356,9 @@ RUN show variables like 'mysqlx_min_worker_threads%'
356
356
Variable_name Value
357
357
mysqlx_min_worker_threads 50
358
358
0 rows affected
359
-
RUN SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%'
RUN SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%'
Copy file name to clipboardExpand all lines: mysql-test/suite/xplugin/t/installxplugin.test
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ show variables like 'mysqlx_idle_worker_thread_timeout%';
32
32
show variables like 'mysqlx_max_allowed_packet%';
33
33
show variables like 'mysqlx_max_connections%';
34
34
show variables like 'mysqlx_min_worker_threads%';
35
-
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
35
+
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
36
36
-->endsql
37
37
EOF
38
38
@@ -134,7 +134,7 @@ show variables like 'mysqlx_max_allowed_packet%';
134
134
show variables like 'mysqlx_max_connections%';
135
135
show variables like 'mysqlx_min_worker_threads%';
136
136
--replace_regex /\.dll/.so/
137
-
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
137
+
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
138
138
139
139
##uninstall mysqlx plugin with old protocol session when server started with mysqlx plugin variables with other than default values
140
140
uninstall plugin mysqlx;
@@ -150,7 +150,7 @@ show variables like 'mysqlx_idle_worker_thread_timeout%';
150
150
show variables like 'mysqlx_max_allowed_packet%';
151
151
show variables like 'mysqlx_max_connections%';
152
152
show variables like 'mysqlx_min_worker_threads%';
153
-
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_TYPE_VERSION,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
153
+
SELECT PLUGIN_NAME,PLUGIN_VERSION,PLUGIN_STATUS,PLUGIN_TYPE,PLUGIN_LIBRARY_VERSION,LOAD_OPTION from information_schema.plugins where PLUGIN_NAME LIKE 'mysqlx%';
0 commit comments