summaryrefslogtreecommitdiffstats
path: root/mysql-test/include/have_unix_socket.inc
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/include/have_unix_socket.inc')
-rw-r--r--mysql-test/include/have_unix_socket.inc14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/include/have_unix_socket.inc b/mysql-test/include/have_unix_socket.inc
new file mode 100644
index 00000000..7be828ac
--- /dev/null
+++ b/mysql-test/include/have_unix_socket.inc
@@ -0,0 +1,14 @@
+--source include/not_embedded.inc
+
+if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'unix_socket' and plugin_status='active'`)
+{
+ --skip Needs unix_socket plugin
+}
+
+if (!$USER) {
+ skip USER variable is undefined;
+}
+
+if (`SELECT count(*) <> 0 FROM mysql.user WHERE user = '$USER'`) {
+ skip \$USER=$USER which exists in mysql.user;
+}