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/a50cf444 Tree: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/tree/a50cf444 Diff: http://git-wip-us.apache.org/repos/asf/incubator-vxquery/diff/a50cf444 Branch: refs/heads/prestonc/hash_join Commit: a50cf44448828609648e8e121aedf5dbed339f31 Parents: f44744f Author: Preston Carman <[email protected]> Authored: Thu Mar 20 18:39:52 2014 -0700 Committer: Preston Carman <[email protected]> Committed: Tue Apr 1 20:56:25 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/a50cf444/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); }
