mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
17 lines
257 B
Text
17 lines
257 B
Text
#
|
|
# MDEV-256 lp:995501 - mysqltest attempts to parse Perl code inside a block
|
|
# with false condition, gets confused and throws wrong errors
|
|
#
|
|
|
|
let $run = 0;
|
|
if ($run)
|
|
{
|
|
--perl
|
|
foreach (1)
|
|
{
|
|
print "In perl\n";
|
|
}
|
|
EOF
|
|
SELECT 1;
|
|
}
|
|
--echo # Done
|