lib/sequel/dataset/features.rb in sequel-5.57.0 vs lib/sequel/dataset/features.rb in sequel-5.58.0

- old
+ new

@@ -123,9 +123,14 @@ # Whether the dataset supports skipping raising an error instead of waiting for locked rows when returning data, false by default. def supports_nowait? false end + # Whether the MERGE statement is supported, false by default. + def supports_merge? + false + end + # Whether modifying joined datasets is supported, false by default. def supports_modifying_joins? false end