ZmmBigdata opened a new pull request, #1406: URL: https://github.com/apache/fluss/pull/1406
### Purpose Linked issue: close #xxx **What is the purpose of the change**: Fix: Correct column specification in T table INSERT statements https://fluss.apache.org/docs/table-design/table-types/pk-table/#lookup ### Brief change log **Please describe the changes**: 1. Background: The original INSERT statements specified only partial columns (k, v1), but the VALUES clause contained more data points that didn't match the actual column structure of table T. This could lead to logical errors in data insertion. 2. Changes made: Added missing columns to the INSERT INTO statements. Based on the complete column definition of table T (assumed to be k INT, v1 DOUBLE, v2 STRING), all columns (k, v1, v2) are now explicitly specified to ensure full-column insertion that matches the table structure and business requirements. 3. Impact scope: Only affects the INSERT statement logic for table T. Does not impact DELETE, SET operations, or subsequent query logic. After this fix, data will be inserted completely, preventing potential data issues caused by column mismatch. -- 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]
