Skip to content

Commit 8e3ad2e

Browse files
committed
Add iceberg create table (#1)
* Create Iceberg Table snowflake statement parser * Cargo fmt * Extend iceberg all options test * Add invalid base_location test * Revert import order change
1 parent ed41654 commit 8e3ad2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dialect/snowflake.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ impl Dialect for SnowflakeDialect {
295295
fn is_select_item_alias(&self, explicit: bool, kw: &Keyword, parser: &mut Parser) -> bool {
296296
explicit
297297
|| match kw {
298-
// The following keywords can be considered an alias as long as
298+
// The following keywords can be considered an alias as long as
299299
// they are not followed by other tokens that may change their meaning
300300
// e.g. `SELECT * EXCEPT (col1) FROM tbl`
301301
Keyword::EXCEPT
@@ -317,8 +317,8 @@ impl Dialect for SnowflakeDialect {
317317
false
318318
}
319319

320-
// Reserved keywords by the Snowflake dialect, which seem to be less strictive
321-
// than what is listed in `keywords::RESERVED_FOR_COLUMN_ALIAS`. The following
320+
// Reserved keywords by the Snowflake dialect, which seem to be less strictive
321+
// than what is listed in `keywords::RESERVED_FOR_COLUMN_ALIAS`. The following
322322
// keywords were tested with the this statement: `SELECT 1 <KW>`.
323323
Keyword::FROM
324324
| Keyword::GROUP

0 commit comments

Comments
 (0)