Skip to content

Commit

Permalink
chore: skip one more test for tds connection
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed May 28, 2024
1 parent f3e75d5 commit 5515ec5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions integration_test/sql/subquery.exs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ defmodule Ecto.Integration.SubQueryTest do
assert [12, 12] = TestRepo.all(query)
end

@tag :subquery_in_order_by
test "subqueries in order by" do
TestRepo.insert!(%Post{visits: 10, title: "hello"})
TestRepo.insert!(%Post{visits: 11, title: "hello"})
Expand Down
3 changes: 2 additions & 1 deletion integration_test/tds/test_helper.exs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ ExUnit.start(
:multicolumn_distinct,
# MSSQL doesnt' support subqueries in group by or in distinct
:subquery_in_group_by,
:subquery_in_distinct
:subquery_in_distinct,
:subquery_in_order_by
]
)

Expand Down

0 comments on commit 5515ec5

Please sign in to comment.