jackwang2 commented on issue #9092: URL: https://github.com/apache/iceberg/issues/9092#issuecomment-1815885984
> INSERT INTO hive_prod.lena.idsp_tpats_reattribute ( > event_id, > event_type, > timestamp, > is_test, > is_demand_third_party, > is_anonymous_vpn, > is_suspicious_ip, > ingest_time_at_s3, > txn_time, > ingest_time, > timestamp__deprecated) > SELECT event_id, > event_type, > timestamp, > is_test, > is_demand_third_party, > is_anonymous_vpn, > is_suspicious_ip, > ingest_time_at_s3, > txn_time, > ingest_time, > NULL > FROM _temp Hi @nastra , thanks for the reply, the code looks like below, both `_temp` and `hive_prod.lena.idsp_tpats_reattribute` are Iceberg tables: ``` INSERT INTO hive_prod.lena.idsp_tpats_reattribute ( event_id, event_type, timestamp, is_test, is_demand_third_party, is_anonymous_vpn, is_suspicious_ip, ingest_time_at_s3, txn_time, ingest_time, timestamp__deprecated) SELECT event_id, event_type, timestamp, is_test, is_demand_third_party, is_anonymous_vpn, is_suspicious_ip, ingest_time_at_s3, txn_time, ingest_time, NULL FROM _temp ``` -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org