NIFI-7369: Consider DECIMAL type as a numeric type when using a CHOICE type in QueryRecord

This closes #4223.
This commit is contained in:
Mark Payne 2020-06-02 15:12:54 -04:00
parent 5c2bfcf7d3
commit e0dd6d466e
1 changed files with 1 additions and 0 deletions

View File

@ -279,6 +279,7 @@ public class FlowFileTable extends AbstractTable implements QueryableTable, Tran
switch (dataType.getFieldType()) {
case BIGINT:
case BYTE:
case DECIMAL:
case DOUBLE:
case FLOAT:
case INT: