mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
18 lines
257 B
Text
18 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
|