Skip to content

Commit 2b7d116

Browse files
committed
ensure nulls_first is provided
1 parent 815854f commit 2b7d116

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/sqlparser_common.rs

+2
Original file line numberDiff line numberDiff line change
@@ -939,13 +939,15 @@ fn parse_listagg() {
939939
quote_style: None,
940940
}),
941941
asc: None,
942+
nulls_first: None,
942943
},
943944
OrderByExpr {
944945
expr: Expr::Identifier(Ident {
945946
value: "username".to_string(),
946947
quote_style: None,
947948
}),
948949
asc: None,
950+
nulls_first: None
949951
},
950952
];
951953
assert_eq!(

0 commit comments

Comments
 (0)