Skip to content

Commit dd7eda0

Browse files
committed
fixes #750 - duplicate
1 parent 41fbb64 commit dd7eda0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/test/java/net/sf/jsqlparser/statement/update/UpdateTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,9 @@ public void testUpdateIssue826() throws JSQLParserException {
150150
+ "where message_topic.name='test' \n"
151151
+ "AND message_topic_config.enable_flag='Y'", true);
152152
}
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+
}
153158
}

0 commit comments

Comments
 (0)