Skip to content

Commit 47e378e

Browse files
committed
chore: fix dialyzer
1 parent 8d48267 commit 47e378e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/expr.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1317,7 +1317,7 @@ defmodule AshPostgres.Expr do
13171317
| rest_acc
13181318
])
13191319

1320-
{:dot, _field} ->
1320+
{:dot, _field, _, _} ->
13211321
split_at_paths(type, constraints[:items] || [], rest, [
13221322
{:bracket, [next], type, constraints},
13231323
first_acc
@@ -1390,7 +1390,7 @@ defmodule AshPostgres.Expr do
13901390
| rest_acc
13911391
])
13921392

1393-
{:dot, _path} ->
1393+
{:dot, _path, _, _} ->
13941394
split_at_paths(type, constraints, rest, [
13951395
{bracket_or_dot, [next], nil, nil},
13961396
first_acc | rest_acc
@@ -1405,7 +1405,7 @@ defmodule AshPostgres.Expr do
14051405
| rest_acc
14061406
])
14071407

1408-
{:dot, _path} ->
1408+
{:dot, _path, _, _} ->
14091409
split_at_paths(type, constraints, rest, [
14101410
{bracket_or_dot, [next], nil, nil},
14111411
first_acc | rest_acc

0 commit comments

Comments
 (0)