Changed hash seed to match AsterixDB default.
Project: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/commit/85af9d42 Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/85af9d42 Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/85af9d42 Branch: refs/heads/prestonc/hash_join Commit: 85af9d42d045060c7092bcac9c0ea8246fadb1f1 Parents: 6b83900 Author: Preston Carman <[email protected]> Authored: Thu Mar 20 18:39:52 2014 -0700 Committer: Preston Carman <[email protected]> Committed: Thu Mar 20 18:39:52 2014 -0700 ---------------------------------------------------------------------- .../factory/hashfunction/VXQueryRawBinaryHashFunctionFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-vxquery/blob/85af9d42/vxquery-core/src/main/java/org/apache/vxquery/runtime/factory/hashfunction/VXQueryRawBinaryHashFunctionFactory.java ---------------------------------------------------------------------- diff --git a/vxquery-core/src/main/java/org/apache/vxquery/runtime/factory/hashfunction/VXQueryRawBinaryHashFunctionFactory.java b/vxquery-core/src/main/java/org/apache/vxquery/runtime/factory/hashfunction/VXQueryRawBinaryHashFunctionFactory.java index 3f9a5ad..4f9437b 100644 --- a/vxquery-core/src/main/java/org/apache/vxquery/runtime/factory/hashfunction/VXQueryRawBinaryHashFunctionFactory.java +++ b/vxquery-core/src/main/java/org/apache/vxquery/runtime/factory/hashfunction/VXQueryRawBinaryHashFunctionFactory.java @@ -32,7 +32,7 @@ public class VXQueryRawBinaryHashFunctionFactory implements IBinaryHashFunctionF @Override public IBinaryHashFunction createBinaryHashFunction() { - return MurmurHash3BinaryHashFunctionFamily.INSTANCE.createBinaryHashFunction(1); + return MurmurHash3BinaryHashFunctionFamily.INSTANCE.createBinaryHashFunction(0); }
