File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/test/java/net/sf/jsqlparser/statement/select Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2000,22 +2000,22 @@ public void testProblemFunction3() throws JSQLParserException {
2000
2000
2001
2001
@ Test
2002
2002
public void testAdditionalLettersGerman () throws JSQLParserException {
2003
- String stmt = "SELECT col�, col�, col� FROM testtable��� " ;
2003
+ String stmt = "SELECT colä, colö, colü FROM testtableäöü " ;
2004
2004
assertSqlCanBeParsedAndDeparsed (stmt );
2005
2005
2006
- stmt = "SELECT colA, col�, col� FROM testtable��� " ;
2006
+ stmt = "SELECT colA, colÖ, colÜ FROM testtableÄÖÜ " ;
2007
2007
assertSqlCanBeParsedAndDeparsed (stmt );
2008
2008
2009
- stmt = "SELECT �col FROM testtable��� " ;
2009
+ stmt = "SELECT Äcol FROM testtableÄÖÜ " ;
2010
2010
assertSqlCanBeParsedAndDeparsed (stmt );
2011
2011
2012
- stmt = "SELECT �col� FROM testtable� " ;
2012
+ stmt = "SELECT ßcolß FROM testtableß " ;
2013
2013
assertSqlCanBeParsedAndDeparsed (stmt );
2014
2014
}
2015
2015
2016
2016
@ Test
2017
2017
public void testAdditionalLettersSpanish () throws JSQLParserException {
2018
- String stmt = "SELECT * FROM a�os " ;
2018
+ String stmt = "SELECT * FROM años " ;
2019
2019
assertSqlCanBeParsedAndDeparsed (stmt );
2020
2020
}
2021
2021
You can’t perform that action at this time.
0 commit comments