mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
72ba96a48e
Tests with checking metadata or that cannot be run with the view-protocol are excluded from --view-protocol. For tests that do not allow the use of an additional connection, the util connection is disabled with "--disable_service_connection". Also cases with bugs for --view-protocol are disabled.
25 lines
561 B
SQL
25 lines
561 B
SQL
# include/count_sessions.inc
|
|
#
|
|
# SUMMARY
|
|
#
|
|
# Stores the number of current sessions in $count_sessions.
|
|
#
|
|
#
|
|
# USAGE
|
|
#
|
|
# Please look into include/wait_until_count_sessions.inc
|
|
# for examples of typical usage.
|
|
#
|
|
#
|
|
# EXAMPLE
|
|
# backup.test, grant3.test
|
|
#
|
|
#
|
|
# Created: 2009-01-14 mleich
|
|
#
|
|
|
|
# Tests will be skipped for the view protocol because the view protocol creates
|
|
# an additional util connection and other statistics data
|
|
-- source include/no_view_protocol.inc
|
|
|
|
let $count_sessions= query_get_value(SHOW STATUS LIKE 'Threads_connected', Value, 1);
|