diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 1c93026b..e079cc88 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -9,9 +9,8 @@ on: jobs: ash-ci: strategy: - fail-fast: false matrix: - postgres_version: ["10", "11", "12", "13", "14", "15", "16"] + postgres_version: ["10", "12", "14", "16"] uses: ash-project/ash/.github/workflows/ash-ci.yml@main with: postgres: true diff --git a/lib/join.ex b/lib/join.ex index 15640d62..561bb3db 100644 --- a/lib/join.ex +++ b/lib/join.ex @@ -639,7 +639,7 @@ defmodule AshPostgres.Join do relationship_destination = if needs_subquery? do - subquery(from row in relationship_destination, limit: 1) + subquery(from(row in relationship_destination, limit: 1)) else relationship_destination end @@ -797,7 +797,7 @@ defmodule AshPostgres.Join do relationship_destination = if needs_subquery? do - subquery(from row in relationship_destination, limit: 1) + subquery(from(row in relationship_destination, limit: 1)) else relationship_destination end @@ -920,7 +920,7 @@ defmodule AshPostgres.Join do relationship_destination = if needs_subquery? do - subquery(from row in relationship_destination, limit: 1) + subquery(from(row in relationship_destination, limit: 1)) else relationship_destination end