5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-02 05:30:45 +08:00

SQOOP-3487: Remove unintentionally added rowkeys (via PUT in ToStringPutTransformer.java) during HBase (incremental) import

(Zhou Hong via Attila Szabo)
This commit is contained in:
游侠 2021-03-16 21:53:04 +08:00 committed by GitHub
parent a9f051c5af
commit f8beae32a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,7 +201,6 @@ private List<Mutation> mutationRecordInHBase(Map<String, Object> record,
put.addColumn(colFamilyBytes, getFieldNameBytes(colName),
Bytes.toBytes(toHBaseString(val)));
}
mutationList.add(put);
} else {
switch (nullMode) {
case Delete: