Adds support to sqlHexDecode transformation

Issue #973
This commit is contained in:
Felipe Zimmerle
2016-05-25 20:16:29 -03:00
parent bd2e95953c
commit 1fe0e34201
4 changed files with 79 additions and 18 deletions

View File

@@ -105,7 +105,7 @@ Transformation* Transformation::instantiate(std::string a) {
IF_MATCH(replaceComments) { return new ReplaceComments(a); }
IF_MATCH(replaceNulls) { return new ReplaceNulls(a); }
IF_MATCH(sha1) { return new Sha1(a); }
IF_MATCH(sql_hex_decode) { return new SqlHexDecode(a); }
IF_MATCH(sqlHexDecode) { return new SqlHexDecode(a); }
IF_MATCH(transformation) { return new Transformation(a); }
IF_MATCH(trimLeft) { return new TrimLeft(a); }
IF_MATCH(trimRight) { return new TrimRight(a); }