Skip to content

Commit b90234f

Browse files
committed
changed license header to represent the projects dual license
1 parent 2adec6a commit b90234f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2000,22 +2000,22 @@ public void testProblemFunction3() throws JSQLParserException {
20002000

20012001
@Test
20022002
public void testAdditionalLettersGerman() throws JSQLParserException {
2003-
String stmt = "SELECT col�, col�, col� FROM testtable���";
2003+
String stmt = "SELECT colä, colö, colü FROM testtableäöü";
20042004
assertSqlCanBeParsedAndDeparsed(stmt);
20052005

2006-
stmt = "SELECT colA, col�, col� FROM testtable���";
2006+
stmt = "SELECT colA, colÖ, colÜ FROM testtableÄÖÜ";
20072007
assertSqlCanBeParsedAndDeparsed(stmt);
20082008

2009-
stmt = "SELECT �col FROM testtable���";
2009+
stmt = "SELECT Äcol FROM testtableÄÖÜ";
20102010
assertSqlCanBeParsedAndDeparsed(stmt);
20112011

2012-
stmt = "SELECT �col� FROM testtable�";
2012+
stmt = "SELECT ßcolß FROM testtableß";
20132013
assertSqlCanBeParsedAndDeparsed(stmt);
20142014
}
20152015

20162016
@Test
20172017
public void testAdditionalLettersSpanish() throws JSQLParserException {
2018-
String stmt = "SELECT * FROM a�os";
2018+
String stmt = "SELECT * FROM años";
20192019
assertSqlCanBeParsedAndDeparsed(stmt);
20202020
}
20212021

0 commit comments

Comments
 (0)