mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-01 18:25:59 +00:00
Use VALUES instead of VALUE. Update TableChunker in all tools.
This commit is contained in:
@@ -596,7 +596,7 @@ sub _chunk_char {
|
||||
|
||||
# Populate the temp table with all the characters between the min and max
|
||||
# max character codes. This is our character-to-number map.
|
||||
$sql = "INSERT INTO $tmp_db_tbl VALUE (CHAR(?))";
|
||||
$sql = "INSERT INTO $tmp_db_tbl VALUES (CHAR(?))";
|
||||
PTDEBUG && _d($dbh, $sql);
|
||||
my $ins_char_sth = $dbh->prepare($sql); # avoid quoting issues
|
||||
for my $char_code ( $min_col_ord..$max_col_ord ) {
|
||||
|
Reference in New Issue
Block a user