File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,7 @@ impl Dialect for SnowflakeDialect {
310
310
}
311
311
312
312
// `FETCH` can be considered an alias as long as it's not followed by `FIRST`` or `NEXT`
313
- // which would give it a different meanins , for example: `SELECT 1 FETCH FIRST 10 ROWS` - not an alias
313
+ // which would give it a different meanings , for example: `SELECT 1 FETCH FIRST 10 ROWS` - not an alias
314
314
Keyword :: FETCH
315
315
if parser. peek_keyword ( Keyword :: FIRST ) || parser. peek_keyword ( Keyword :: NEXT ) =>
316
316
{
Original file line number Diff line number Diff line change @@ -1084,7 +1084,7 @@ pub const RESERVED_FOR_COLUMN_ALIAS: &[Keyword] = &[
1084
1084
Keyword :: END ,
1085
1085
] ;
1086
1086
1087
- // Global list of reserved keywords alloweed after FROM.
1087
+ // Global list of reserved keywords allowed after FROM.
1088
1088
// Parser should call Dialect::get_reserved_keyword_after_from
1089
1089
// to allow for each dialect to customize the list.
1090
1090
pub const RESERVED_FOR_TABLE_FACTOR : & [ Keyword ] = & [
Original file line number Diff line number Diff line change @@ -14528,7 +14528,7 @@ fn test_geometric_unary_operators() {
14528
14528
}
14529
14529
14530
14530
#[ test]
14531
- fn test_geomtery_type ( ) {
14531
+ fn test_geometry_type ( ) {
14532
14532
let sql = "point '1,2'" ;
14533
14533
assert_eq ! (
14534
14534
all_dialects_where( |d| d. supports_geometric_types( ) ) . verified_expr( sql) ,
You can’t perform that action at this time.
0 commit comments