Skip to content

Commit

Permalink
fix a sql syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
liyaqin1 committed May 18, 2024
1 parent 186df21 commit 808d0fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class DBPindeployDAOImpl implements PindeployDAO {
private static final String GET_PINDEPLOY =
"SELECT * FROM pindeploy WHERE env_id=?";
private static final String DELETE_PINDEPLOY =
"DELETE * FROM pindeploy WHERE pipeline=?";
"DELETE FROM pindeploy WHERE pipeline=?";
private static final String INSERT_OR_UPDATE_PINDEPLOY =
"INSERT INTO pindeploy SET %s ON DUPLICATE KEY UPDATE pipeline=?, is_pindeploy=?";

Expand Down

0 comments on commit 808d0fd

Please sign in to comment.