lib/sequel/dataset/features.rb in sequel-5.13.0 vs lib/sequel/dataset/features.rb in sequel-5.14.0
- old
+ new
@@ -218,9 +218,14 @@
# Whether the dataset needs ESCAPE for LIKE for correct behavior.
def requires_like_escape?
true
end
+ # Whether ORDER BY col NULLS FIRST/LAST must be emulated.
+ def requires_emulating_nulls_first?
+ false
+ end
+
# Whether common table expressions are supported in UNION/INTERSECT/EXCEPT clauses.
def supports_cte_in_compounds?
supports_cte_in_subqueries?
end