Skip to content

Commit

Permalink
changed license header to represent the projects dual license
Browse files Browse the repository at this point in the history
  • Loading branch information
wumpz committed Feb 6, 2019
1 parent 2adec6a commit b90234f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2000,22 +2000,22 @@ public void testProblemFunction3() throws JSQLParserException {

@Test
public void testAdditionalLettersGerman() throws JSQLParserException {
String stmt = "SELECT col�, col�, col� FROM testtable���";
String stmt = "SELECT colä, colö, colü FROM testtableäöü";
assertSqlCanBeParsedAndDeparsed(stmt);

stmt = "SELECT colA, col�, col� FROM testtable���";
stmt = "SELECT colA, colÖ, colÜ FROM testtableÄÖÜ";
assertSqlCanBeParsedAndDeparsed(stmt);

stmt = "SELECT �col FROM testtable���";
stmt = "SELECT Äcol FROM testtableÄÖÜ";
assertSqlCanBeParsedAndDeparsed(stmt);

stmt = "SELECT �col� FROM testtable�";
stmt = "SELECT ßcolß FROM testtableß";
assertSqlCanBeParsedAndDeparsed(stmt);
}

@Test
public void testAdditionalLettersSpanish() throws JSQLParserException {
String stmt = "SELECT * FROM a�os";
String stmt = "SELECT * FROM años";
assertSqlCanBeParsedAndDeparsed(stmt);
}

Expand Down

0 comments on commit b90234f

Please sign in to comment.