succw opened a new issue, #4134:
URL: https://github.com/apache/incubator-streampark/issues/4134

   ### Search before asking
   
   - [X] I had searched in the 
[issues](https://github.com/apache/incubator-streampark/issues?q=is%3Aissue+label%3A%22bug%22)
 and found no similar issues.
   
   
   ### Java Version
   
   1.8.
   
   ### Scala Version
   
   2.11.x
   
   ### StreamPark Version
   
   2.1.1
   
   ### Flink Version
   
   1.17.1
   
   ### deploy mode
   
   None
   
   ### What happened
   
   From version 2.1.1 to 2.1.5 update
   
   ### Error Exception
   
   ```log
   ### The error may exist in class path resource 
[mapper/core/SavepointMapper.xml]
   ### The error may involve defaultParameterMap
   ### The error occurred while setting parameters
   ### SQL: update t_flink_savepoint         set latest = 0         where 
app_id = ?
   ### Cause: org.postgresql.util.PSQLException: ERROR: column "latest" is of 
type boolean but expression is of type integer
     Hint: You will need to rewrite or cast the expression.
     Position: 47
   ]
   
   ---
   
   UPDATE t_flink_savepoint
   SET latest = CAST(0 AS BOOLEAN)  -- Explicitly cast 0 to BOOLEAN
   WHERE app_id = ?;
   ```
   
   
   ### Screenshots
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!(您是否要贡献这个PR?)
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@streampark.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to