mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
cc22852e2e
extra/resolveip.c: Removed warnings about implicit declarations myisam/mi_open.c: Removed warning about unused symbol mysys/my_compress.c: Removed warnings about implicit declaration mysys/string.c: Removed warning about uninitialized variable strings/ctype.c: Removed warning about implicit declaration vio/test-sslclient.c: Testprogram heavy modify vio/test-sslserver.c: Testprogram heavy modify
9 lines
248 B
Bash
Executable file
9 lines
248 B
Bash
Executable file
#! /bin/sh
|
|
|
|
cmd () {
|
|
echo $*
|
|
$*
|
|
}
|
|
|
|
cmd sql/mysqld --port=4407 --socket=/tmp/test.mysql.sock --ssl-ca=SSL/cacert.pem --ssl-cert=SSL/server-cert.pem --ssl-key=SSL/server-key.pem --skip-grant --debug='d:t:O,/tmp/mysqld.trace' >& /tmp/mysqld.output
|
|
|