Skip to content

Commit 86423b0

Browse files
committed
additional letters token rule included, to expand range of acceptable identifiers
1 parent aa8e15a commit 86423b0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package net.sf.jsqlparser.test.select;
22

33
import java.io.StringReader;
4-
54
import junit.framework.TestCase;
65
import net.sf.jsqlparser.JSQLParserException;
76
import net.sf.jsqlparser.expression.BinaryExpression;
@@ -737,14 +736,14 @@ public void testProblemFunction2() throws JSQLParserException {
737736
String stmt = "SELECT sysdate FROM testtable";
738737
assertSqlCanBeParsedAndDeparsed(stmt);
739738
}
740-
739+
741740
public void testAdditionalLettersGerman() throws JSQLParserException {
742741
String stmt = "SELECT colä, colü, colö FROM testtableöäü";
743742
assertSqlCanBeParsedAndDeparsed(stmt);
744-
743+
745744
stmt = "SELECT colÄ, colÜ, colÖ FROM testtableÖÜÄ";
746745
assertSqlCanBeParsedAndDeparsed(stmt);
747-
746+
748747
stmt = "SELECT Äcol FROM testtableÖÜÄ";
749748
assertSqlCanBeParsedAndDeparsed(stmt);
750749
}

0 commit comments

Comments
 (0)