Skip to content

Commit

Permalink
comment out an assertion that fires when loading Parquet2 (#54408)
Browse files Browse the repository at this point in the history
Removes the milestone from
#53109, see
#53109 (comment)

Co-authored-by: KristofferC <kristoffer.carlsson@juliacomputing.com>
(cherry picked from commit 20c3628)
  • Loading branch information
KristofferC authored and KristofferC committed May 23, 2024
1 parent 0f010f0 commit 1b53dde
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/staticdata_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1255,7 +1255,8 @@ static void jl_insert_backedges(jl_array_t *edges, jl_array_t *ext_targets, jl_a
JL_GC_PROMISE_ROOTED(owner);

assert(jl_atomic_load_relaxed(&codeinst->min_world) == minworld);
assert(jl_atomic_load_relaxed(&codeinst->max_world) == WORLD_AGE_REVALIDATION_SENTINEL);
// See #53586, #53109
// assert(jl_atomic_load_relaxed(&codeinst->max_world) == WORLD_AGE_REVALIDATION_SENTINEL);
assert(jl_atomic_load_relaxed(&codeinst->inferred));
jl_atomic_store_relaxed(&codeinst->max_world, maxvalid);

Expand Down

0 comments on commit 1b53dde

Please sign in to comment.