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 6ba57e5 commit d54b82bCopy full SHA for d54b82b
src/test/java/net/sf/jsqlparser/test/select/SelectTest.java
@@ -1830,6 +1830,10 @@ public void testSelectInto1() throws JSQLParserException {
1830
public void testSelectForUpdate() throws JSQLParserException {
1831
assertSqlCanBeParsedAndDeparsed("SELECT * FROM user_table FOR UPDATE");
1832
}
1833
+
1834
+ public void testSelectForUpdate2() throws JSQLParserException {
1835
+ assertSqlCanBeParsedAndDeparsed("SELECT * FROM emp WHERE empno = ? FOR UPDATE");
1836
+ }
1837
1838
public void testSelectJoin() throws JSQLParserException {
1839
assertSqlCanBeParsedAndDeparsed("SELECT pg_class.relname, pg_attribute.attname, pg_constraint.conname "
0 commit comments