From 944a4e128eef25fe3531964bceb23e916d66fbed Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Fri, 17 Nov 2023 09:17:11 -0500 Subject: [PATCH] chore: format and fix matrix --- .github/workflows/elixir.yml | 3 +-- lib/join.ex | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 1c93026..e079cc8 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 15640d6..561bb3d 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