lib/sequel/dataset/features.rb in sequel-4.10.0 vs lib/sequel/dataset/features.rb in sequel-4.11.0

- old
+ new

@@ -52,9 +52,16 @@ # if multiple WITH clauses use the same name. def supports_cte_in_subqueries? false end + # Whether the database supports derived column lists (e.g. + # "table_expr AS table_alias(column_alias1, column_alias2, ...)"), true by + # default. + def supports_derived_column_lists? + true + end + # Whether the dataset supports or can emulate the DISTINCT ON clause, false by default. def supports_distinct_on? false end