midenok / mariadb

MariaDB server is a community developed fork of MySQL server. Started by core members of the original MySQL team, MariaDB actively works with outside developers to deliver the most featureful, stable, and sanely licensed open SQL server in the industry.
GNU General Public License v2.0
0 stars 0 forks source link

Perl snippets in mysql-test are dumb #42

Open midenok opened 6 years ago

midenok commented 6 years ago
  1. they are unconnected
    
    perl;
    my $a= 'abc';
    EOF
    perl;
    printf "A: $a\n";
    EOF

--echo $a


2. they are badly integrated with test code
```perl
--let a= abc
perl;
print "A: $a\n";
EOF
--echo $a