Skip to content

Commit f1bce5e

Browse files
committed
jcustenborder#115 Skip over null values in PatternMapString
1 parent 1bde822 commit f1bce5e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/github/jcustenborder/kafka/connect/transform/common/PatternMapString.java

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ protected SchemaAndValue processStruct(R record, Schema inputSchema, Struct inpu
109109
}
110110
outputStruct.put(config.destfieldname, replacedValue);
111111
retVal = new SchemaAndValue(outPutSchema, outputStruct);
112+
} else {
113+
retVal = new SchemaAndValue(outPutSchema, inputStruct);
112114
}
113115
}
114116
return retVal;

0 commit comments

Comments
 (0)