Fix typos

This commit is contained in:
Artem Gavrilov
2024-12-18 16:11:27 +02:00
parent 754c40628d
commit c4260e5d7a
2 changed files with 2 additions and 2 deletions

View File

@@ -3952,7 +3952,7 @@ my $unquoted_ident = qr/
my $ident_alias = qr/
\s+ # space before alias
(?:(AS)\s+)? # optional AS keyword
((?>$quoted_ident|$unquoted_ident)) # alais
((?>$quoted_ident|$unquoted_ident)) # alias
/xi;
my $table_ident = qr/(?:

View File

@@ -59,7 +59,7 @@ my $unquoted_ident = qr/
my $ident_alias = qr/
\s+ # space before alias
(?:(AS)\s+)? # optional AS keyword
((?>$quoted_ident|$unquoted_ident)) # alais
((?>$quoted_ident|$unquoted_ident)) # alias
/xi;
# A table is identified by 1 or 2 identifiers separated by a period