Skip to content

Commit

Permalink
Merge pull request #898 from percona/fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
svetasmirnova authored Dec 19, 2024
2 parents c019ecf + c4260e5 commit 010f052
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/pt-table-usage
Original file line number Diff line number Diff line change
Expand Up @@ -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/(?:
Expand Down
2 changes: 1 addition & 1 deletion lib/SQLParser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 010f052

Please sign in to comment.