Skip to content

Commit

Permalink
Merge pull request #3138 from popsql/test-mysql-duplicate
Browse files Browse the repository at this point in the history
Remove duplicate testcases for mysql
  • Loading branch information
alexdima committed Jul 21, 2022
2 parents 12f045c + a3a0153 commit 6a9cec5
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions src/basic-languages/mysql/mysql.test.ts
Expand Up @@ -385,41 +385,6 @@ testTokenization('mysql', [
}
],

[
{
line: 'declare `abc 321`;',
tokens: [
{ startIndex: 0, type: 'keyword.sql' },
{ startIndex: 7, type: 'white.sql' },
{ startIndex: 8, type: 'identifier.quote.sql' },
{ startIndex: 9, type: 'identifier.sql' },
{ startIndex: 16, type: 'identifier.quote.sql' },
{ startIndex: 17, type: 'delimiter.sql' }
]
}
],

[
{
line: '`abc`` 321 `` xyz`',
tokens: [
{ startIndex: 0, type: 'identifier.quote.sql' },
{ startIndex: 1, type: 'identifier.sql' },
{ startIndex: 17, type: 'identifier.quote.sql' }
]
}
],

[
{
line: '`abc',
tokens: [
{ startIndex: 0, type: 'identifier.quote.sql' },
{ startIndex: 1, type: 'identifier.sql' }
]
}
],

[
{
line: 'int',
Expand Down

0 comments on commit 6a9cec5

Please sign in to comment.