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 45132a7 commit 55b8e7aCopy full SHA for 55b8e7a
src/test/java/net/sf/jsqlparser/test/select/SelectTest.java
@@ -1721,6 +1721,10 @@ public void testSelectWithBrackets2() throws JSQLParserException {
1721
assertSqlCanBeParsedAndDeparsed("(SELECT 1)");
1722
}
1723
1724
+ public void testSelectWithoutFrom() throws JSQLParserException {
1725
+ assertSqlCanBeParsedAndDeparsed("SELECT footable.foocolumn");
1726
+ }
1727
+
1728
public void testSelectKeywordPercent() throws JSQLParserException {
1729
assertSqlCanBeParsedAndDeparsed("SELECT percent FROM MY_TABLE");
1730
0 commit comments