fix bug introduced in AggTypes
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/9d233cb7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/9d233cb7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/9d233cb7 Branch: refs/heads/master Commit: 9d233cb7a0a9d3fac52b55fe0b4611ad281d6121 Parents: bfbc83f Author: Steven Phillips <[email protected]> Authored: Wed Apr 2 16:17:21 2014 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Sat Apr 19 18:07:11 2014 -0700 ---------------------------------------------------------------------- exec/java-exec/src/main/codegen/data/AggrTypes1.tdd | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/9d233cb7/exec/java-exec/src/main/codegen/data/AggrTypes1.tdd ---------------------------------------------------------------------- diff --git a/exec/java-exec/src/main/codegen/data/AggrTypes1.tdd b/exec/java-exec/src/main/codegen/data/AggrTypes1.tdd index e0a1c11..25dcd96 100644 --- a/exec/java-exec/src/main/codegen/data/AggrTypes1.tdd +++ b/exec/java-exec/src/main/codegen/data/AggrTypes1.tdd @@ -35,7 +35,6 @@ {inputType: "BigInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "NullableBit", outputType: "Bit", runningType: "Bit"}, {inputType: "NullableInt", outputType: "Int", runningType: "Int"}, - {inputType: "NullableInt", outputType: "Int", runningType: "Int"}, {inputType: "NullableBigInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "Float4", outputType: "Float4", runningType: "Float4"}, {inputType: "Float8", outputType: "Float8", runningType: "Float8"}, @@ -48,7 +47,6 @@ {inputType: "Int", outputType: "BigInt", runningType: "BigInt"}, {inputType: "BigInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "NullableBit", outputType: "Bit", runningType: "Bit"}, - {inputType: "NullableInt", outputType: "Int", runningType: "Int"}, {inputType: "NullableInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "NullableBigInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "Float4", outputType: "Float8", runningType: "Float8"}, @@ -62,7 +60,6 @@ {inputType: "Int", outputType: "BigInt", runningType: "BigInt"}, {inputType: "BigInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "NullableBit", outputType: "Bit", runningType: "Bit"}, - {inputType: "NullableInt", outputType: "Int", runningType: "Int"}, {inputType: "NullableInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "NullableBigInt", outputType: "BigInt", runningType: "BigInt"}, {inputType: "Float4", outputType: "BigInt", runningType: "BigInt"},
