We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09830c9 commit b392733Copy full SHA for b392733
src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java
@@ -1888,6 +1888,12 @@ public void testBrackets2() throws JSQLParserException {
1888
assertSqlCanBeParsedAndDeparsed(stmt, false,
1889
parser -> parser.withSquareBracketQuotation(true));
1890
}
1891
+
1892
+ @Test
1893
+ public void testIssue1595() throws JSQLParserException {
1894
+ assertSqlCanBeParsedAndDeparsed("SELECT [id] FROM [guest].[12tableName]", false,
1895
+ parser -> parser.withSquareBracketQuotation(true));
1896
+ }
1897
1898
@Test
1899
public void testBrackets3() throws JSQLParserException {
0 commit comments