commit | f535cbd4cef76f57433d740ca0ce1a20383c4700 | [log] [tgz] |
---|---|---|
author | jarodwen <jarodwen@123451ca-8445-de46-9d55-352943316053> | Wed Feb 22 20:42:13 2012 +0000 |
committer | jarodwen <jarodwen@123451ca-8445-de46-9d55-352943316053> | Wed Feb 22 20:42:13 2012 +0000 |
tree | 6d6710286da7135eec24657b527b32ff35025404 | |
parent | 951d09c939d2d50e4930f9406288fdfd6021abc4 [diff] |
Fixed issue #60 on incorrect aggregate state initialization. git-svn-id: https://hyracks.googlecode.com/svn/branches/hyracks_dev_next@1226 123451ca-8445-de46-9d55-352943316053
diff --git a/hyracks-algebricks/hyracks-algebricks-core/src/main/java/edu/uci/ics/hyracks/algebricks/core/algebra/runtime/operators/aggreg/SerializableAggregatorDescriptorFactory.java b/hyracks-algebricks/hyracks-algebricks-core/src/main/java/edu/uci/ics/hyracks/algebricks/core/algebra/runtime/operators/aggreg/SerializableAggregatorDescriptorFactory.java index abfd1c1..ffc8c54 100644 --- a/hyracks-algebricks/hyracks-algebricks-core/src/main/java/edu/uci/ics/hyracks/algebricks/core/algebra/runtime/operators/aggreg/SerializableAggregatorDescriptorFactory.java +++ b/hyracks-algebricks/hyracks-algebricks-core/src/main/java/edu/uci/ics/hyracks/algebricks/core/algebra/runtime/operators/aggreg/SerializableAggregatorDescriptorFactory.java
@@ -40,7 +40,7 @@ @Override public AggregateState createAggregateStates() { - return null; + return new AggregateState(); } @Override