Skip to content

Commit f07af1d

Browse files
committed
Fix builds on macos13 due to missing cast
Added a missing cast that's been causing debug build failures on macos13 with PG18 after PR timescale#8465
1 parent ff980e6 commit f07af1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsl/src/compression/batch_metadata_builder_bloom1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ bloom1_contains_any(PG_FUNCTION_ARGS)
603603
* systems.
604604
*/
605605
#if FLOAT8PASSBYVAL
606-
uint64 *item_base_hashes = items;
606+
uint64 *item_base_hashes = (uint64 *) items;
607607
#else
608608
uint64 *item_base_hashes = palloc(sizeof(uint64) * num_items);
609609
#endif

0 commit comments

Comments
 (0)