mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
29 lines
624 B
Text
29 lines
624 B
Text
--echo #
|
|
--echo # regression introduced by MDEV-14448
|
|
--echo #
|
|
source include/not_embedded.inc;
|
|
source include/not_windows.inc;
|
|
|
|
error 0,1;
|
|
exec $MYSQL -V|grep -q readline;
|
|
if ($sys_errno == 1)
|
|
{
|
|
# strangely enough
|
|
skip does not work with libedit;
|
|
}
|
|
|
|
write_file $MYSQL_TMP_DIR/mysql_in;
|
|
delimiter $
|
|
select 1;
|
|
$
|
|
EOF
|
|
let TERM=dumb;
|
|
replace_regex /id is \d+/id is X/ /Server version: .*/Server version: Y/ / \(\d+\.\d+ sec\)//;
|
|
error 0,127;
|
|
exec socat EXEC:"$MYSQL",pty STDIO < $MYSQL_TMP_DIR/mysql_in;
|
|
if ($sys_errno == 127)
|
|
{
|
|
remove_file $MYSQL_TMP_DIR/mysql_in;
|
|
skip no socat;
|
|
}
|
|
remove_file $MYSQL_TMP_DIR/mysql_in;
|