Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# dbplyr (development version)

* Add support for `pmin()` and `pmax()` on SQL Server (@edward-burn, #1602).

* Fix for failing snapshot tests (@edward-burn, #1567).

* Tightened argument checks for SQL translations. These changes should
Expand Down
4 changes: 0 additions & 4 deletions R/backend-mssql.R
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,6 @@ simulate_mssql <- function(version = "15.0") {
ceil = sql_prefix("CEILING"),
ceiling = sql_prefix("CEILING"),

# https://dba.stackexchange.com/questions/187090
pmin = sql_not_supported("pmin"),
pmax = sql_not_supported("pmax"),

is.null = mssql_is_null,
is.na = mssql_is_null,

Expand Down
Loading