Commit 0d9506d1 authored by Robert Haas's avatar Robert Haas

Try to repair poorly-considered code in previous commit.

parent 81c5e46c
...@@ -313,10 +313,10 @@ jsonb_hash_extended(PG_FUNCTION_ARGS) ...@@ -313,10 +313,10 @@ jsonb_hash_extended(PG_FUNCTION_ARGS)
{ {
/* Rotation is left to JsonbHashScalarValueExtended() */ /* Rotation is left to JsonbHashScalarValueExtended() */
case WJB_BEGIN_ARRAY: case WJB_BEGIN_ARRAY:
hash ^= ((UINT64CONST(JB_FARRAY) << 32) | UINT64CONST(JB_FARRAY)); hash ^= ((uint64) JB_FARRAY) << 32 | JB_FARRAY;
break; break;
case WJB_BEGIN_OBJECT: case WJB_BEGIN_OBJECT:
hash ^= ((UINT64CONST(JB_FOBJECT) << 32) | UINT64CONST(JB_FOBJECT)); hash ^= ((uint64) JB_FOBJECT) << 32 | JB_FOBJECT;
break; break;
case WJB_KEY: case WJB_KEY:
case WJB_VALUE: case WJB_VALUE:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment