summaryrefslogtreecommitdiff
path: root/sql-bench/test-ATIS.sh
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-11-22 17:55:18 +0200
committermonty@hundin.mysql.fi <>2001-11-22 17:55:18 +0200
commita66ddaf8ba4b7e5478c376ce65b57d6fdf25607b (patch)
tree5c88c46555c8f2f0d49c779e6347d2d6139a84e0 /sql-bench/test-ATIS.sh
parent9265a4df45ea24b029ce024df7c9f34b7248a0d0 (diff)
downloadmariadb-git-a66ddaf8ba4b7e5478c376ce65b57d6fdf25607b.tar.gz
Fixed fulltext after merge from 3.23.45
First (incomplete) version of transaction and as3ap tests.
Diffstat (limited to 'sql-bench/test-ATIS.sh')
-rw-r--r--sql-bench/test-ATIS.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/sql-bench/test-ATIS.sh b/sql-bench/test-ATIS.sh
index fa66dadd03e..da866f2eb66 100644
--- a/sql-bench/test-ATIS.sh
+++ b/sql-bench/test-ATIS.sh
@@ -125,8 +125,7 @@ if (!$opt_skip_create)
chomp;
next unless ( $_ =~ /\w/ ); # skip blank lines
my $command = $insert_start . $_ . ")";
- $command =~ s/\'\'/\' \'/g if ($opt_server =~ /empress/i || $opt_server =~ /oracle/i);
- $command =~ s/\\'//g if ($opt_server =~ /informix/i);
+ $command = $server->fix_for_insert($command);
print "$command\n" if ($opt_debug);
$command =~ s/\\'/\'\'/g if ($double_quotes);