Skip to content

Commit 1819a8f

Browse files
committed
SGA-12672 cargo fmt fix
1 parent 158d1a1 commit 1819a8f

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/ast/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,8 @@ pub use self::query::{
9292
TableIndexType, TableSample, TableSampleBucket, TableSampleKind, TableSampleMethod,
9393
TableSampleModifier, TableSampleQuantity, TableSampleSeed, TableSampleSeedModifier,
9494
TableSampleUnit, TableVersion, TableWithJoins, Top, TopQuantity, UpdateTableFromKind,
95-
ValueTableMode, Values, WildcardAdditionalOptions, With, WithFill,
96-
XmlNamespaceDefinition, XmlPassingArgument, XmlPassingClause, XmlTableColumn,
97-
XmlTableColumnOption,
95+
ValueTableMode, Values, WildcardAdditionalOptions, With, WithFill, XmlNamespaceDefinition,
96+
XmlPassingArgument, XmlPassingClause, XmlTableColumn, XmlTableColumnOption,
9897
};
9998

10099
pub use self::trigger::{

tests/sqlparser_common.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,11 @@ fn parse_insert_values() {
158158
assert_eq!(column, &Ident::new(expected_columns[index].clone()));
159159
}
160160
match *source.body {
161-
SetExpr::Values(Values { rows, value_keyword, .. }) => {
161+
SetExpr::Values(Values {
162+
rows,
163+
value_keyword,
164+
..
165+
}) => {
162166
assert_eq!(rows.as_slice(), expected_rows);
163167
assert!(value_keyword == expected_value_keyword);
164168
}

0 commit comments

Comments
 (0)