Skip to content

Commit

Permalink
Reference erlang/otp issue in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
zachallaun committed Jul 23, 2024
1 parent 1510faf commit 1b67e87
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions apps/common/lib/elixir/features.ex
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ defmodule Elixir.Features do
@doc """
Whether the `:compressed` ETS table option can be safely used.
A bug in at least Erlang/OTP 27.0.0 and 27.0.1 can cause a segfault
when traversing the entire table with something like `:ets.foldl/3`
if the `:compressed` table option is used. When this is fixed, we can
change the version check to `"< 27.0.0 or >= 27.X"`.
A bug in Erlang/OTP 27.0.0 and 27.0.1 can cause a segfault when
traversing the entire table with something like `:ets.foldl/3` if the
`:compressed` table option is used. When this is fixed, we can change
the version check to `"< 27.0.0 or >= 27.X"`.
Issue to track: https://github.com/erlang/otp/issues/8682
"""
def can_use_compressed_ets_table? do
Version.match?(Versions.current().erlang, "< 27.0.0")
Expand Down

0 comments on commit 1b67e87

Please sign in to comment.