File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
tsl/src/nodes/vector_agg/hashing Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
typedef struct FUNCTION_NAME (entry )
17
17
{
18
+ HASH_TABLE_KEY_TYPE hash_table_key ;
19
+
18
20
/* Key index 0 is invalid. */
19
21
uint32 key_index ;
20
-
21
- HASH_TABLE_KEY_TYPE hash_table_key ;
22
22
} FUNCTION_NAME (entry );
23
23
24
24
#define SH_PREFIX KEY_VARIANT
Original file line number Diff line number Diff line change 14
14
15
15
/*
16
16
* The struct is packed so that the hash table entry fits into 16
17
- * bytes with the uint32 key index that goes before .
17
+ * bytes with the uint32 key index that goes after .
18
18
*/
19
19
struct umash_fingerprint_key
20
20
{
21
- uint32 hash ;
22
- uint64 rest ;
21
+ uint64 hash ;
22
+ uint32 rest ;
23
23
} pg_attribute_packed ();
24
24
25
25
#define HASH_TABLE_KEY_TYPE struct umash_fingerprint_key
You can’t perform that action at this time.
0 commit comments