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 {
116116 true
117117 }
118118
119+ fn supports_projection_trailing_commas ( & self ) -> bool {
120+ true
121+ }
122+
119123 fn supports_asc_desc_in_column_definition ( & self ) -> bool {
120124 true
121125 }
Original file line number Diff line number Diff line change @@ -11184,7 +11184,7 @@ fn parse_trailing_comma() {
1118411184 trailing_commas.verified_stmt(r#"SELECT "from" FROM "from""#);
1118511185
1118611186 // 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 {})]);
1118811188
1118911189 assert_eq!(
1119011190 trailing_commas
You can’t perform that action at this time.
0 commit comments