mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
58 lines
No EOL
1.9 KiB
PHP
58 lines
No EOL
1.9 KiB
PHP
--TEST--
|
|
PDO_MYSQL: check the session_connect_attrs table for connection attributes
|
|
--SKIPIF--
|
|
<?php
|
|
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'skipif.inc');
|
|
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
MySQLPDOTest::skip();
|
|
if (!MySQLPDOTest::isPDOMySQLnd()) die('skip only for mysqlnd');
|
|
|
|
$pdo = MySQLPDOTest::factory();
|
|
|
|
$stmt = $pdo->query("select count(*) from information_schema.tables where table_schema='performance_schema' and table_name='session_connect_attrs'");
|
|
if (!$stmt || !$stmt->fetchColumn()) {
|
|
die("skip mysql does not support session_connect_attrs table yet");
|
|
}
|
|
|
|
$stmt = $pdo->query("show variables like 'performance_schema'");
|
|
if (!$stmt || $stmt->fetchColumn(1) !== 'ON') {
|
|
die("skip performance_schema is OFF");
|
|
}
|
|
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once(__DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc');
|
|
$pdo = MySQLPDOTest::factory();
|
|
|
|
if (preg_match('/host=([^;]+)/', PDO_MYSQL_TEST_DSN, $m)) {
|
|
$host = $m[1];
|
|
}
|
|
|
|
//in case $host is empty, do not test for _server_host field
|
|
if (isset($host) && $host !== '') {
|
|
$stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_server_host' and processlist_id = connection_id()");
|
|
|
|
$row = $stmt->fetch(PDO::FETCH_ASSOC);
|
|
|
|
if (!$row || !isset($row['attr_name'])) {
|
|
echo "_server_host missing\n";
|
|
} elseif ($row['attr_value'] !== $host) {
|
|
printf("_server_host mismatch (expected '%s', got '%s')\n", $host, $row['attr_value']);
|
|
}
|
|
}
|
|
|
|
$stmt = $pdo->query("select * from performance_schema.session_connect_attrs where ATTR_NAME='_client_name' and processlist_id = connection_id()");
|
|
|
|
$row = $stmt->fetch(PDO::FETCH_ASSOC);
|
|
if (!$row || !isset($row['attr_name'])) {
|
|
echo "_client_name missing\n";
|
|
} elseif ($row['attr_value'] !== 'mysqlnd') {
|
|
printf("_client_name mismatch (expected 'mysqlnd', got '%s')\n", $row['attr_value']);
|
|
}
|
|
|
|
printf("done!");
|
|
?>
|
|
--EXPECT--
|
|
done!
|