Skip to content

Commit

Permalink
feat(): unicode extended char support for column name or alias
Browse files Browse the repository at this point in the history
  • Loading branch information
luizzappa committed Oct 22, 2023
1 parent f2524a0 commit 31faa6a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/main.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -436,4 +436,16 @@ describe('select grammar support', function () {
it('test IDENTIFIER', function () {
testParser('select `aa#sfs`(a) as \'A A\' from z');
});

it('Support unicode extended char (U+0080..U+FFFF) as column name or alias', function() {
testParser(`select
país,
MAX(produção) as maior_produção,
Ĉapelo,
Δάσος,
Молоко,
سلام,
かわいい
from table`)
})
});

0 comments on commit 31faa6a

Please sign in to comment.