5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-03 03:59:18 +08:00

use correct mysqlimport parameter for escaped by character

This commit is contained in:
John Pickard 2015-05-21 11:38:42 -04:00
parent 2184161449
commit 16b75f58ce

View File

@ -201,7 +201,7 @@ private void initMySQLImportProcess() throws IOException {
} }
if (0 != escapedBy) { if (0 != escapedBy) {
args.add("--escaped-by=0x" + Integer.toString(escapedBy, 16)); args.add("--fields-escaped-by=0x" + Integer.toString(escapedBy, 16));
} }
// These two arguments are positional and must be last. // These two arguments are positional and must be last.