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 41fbb64 commit dd7eda0Copy full SHA for dd7eda0
src/test/java/net/sf/jsqlparser/statement/update/UpdateTest.java
@@ -150,4 +150,9 @@ public void testUpdateIssue826() throws JSQLParserException {
150
+ "where message_topic.name='test' \n"
151
+ "AND message_topic_config.enable_flag='Y'", true);
152
}
153
+
154
+ @Test
155
+ public void testUpdateIssue750() throws JSQLParserException {
156
+ assertSqlCanBeParsedAndDeparsed("update a,(select * from c) b set a.id=b.id where a.id=b.id", true);
157
+ }
158
0 commit comments