File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,10 @@ impl Dialect for GenericDialect {
116
116
true
117
117
}
118
118
119
+ fn supports_projection_trailing_commas ( & self ) -> bool {
120
+ true
121
+ }
122
+
119
123
fn supports_asc_desc_in_column_definition ( & self ) -> bool {
120
124
true
121
125
}
Original file line number Diff line number Diff line change @@ -11184,7 +11184,7 @@ fn parse_trailing_comma() {
11184
11184
trailing_commas.verified_stmt(r#"SELECT "from" FROM "from""#);
11185
11185
11186
11186
// doesn't allow any trailing commas
11187
- let trailing_commas = TestedDialects::new(vec![Box::new(GenericDialect {})]);
11187
+ let trailing_commas = TestedDialects::new(vec![Box::new(PostgreSqlDialect {})]);
11188
11188
11189
11189
assert_eq!(
11190
11190
trailing_commas
You can’t perform that action at this time.
0 commit comments