chl-wxp commented on issue #10198: URL: https://github.com/apache/seatunnel/issues/10198#issuecomment-3663331896
MySQL's FLOAT is not an exact type. MySQL is an approximate value when actually stored. You can use this SQL to check the real value stored in the database: `SELECT col, CAST(col AS DECIMAL(20,10)) FROM your_table;` You will find that the value is different from what you expected. If you want the accuracy to be consistent, it is recommended that mysql use the DECIMAL field type. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
