QuantumBear commented on issue #2232:
URL:
https://github.com/apache/incubator-paimon/issues/2232#issuecomment-1812045931
Yes, the running sql is like
```
SET 'table.exec.sink.upsert-materialize' = 'NONE';
CREATE CATALOG `hdfs_catalog` WITH (
'type' = 'paimon',
'warehouse' = 'hdfs://HDFS44505/warehouse/flink'
);
USE CATALOG `hdfs_catalog`;
INSERT INTO `dwd_fact_scrm_business_opportunity_rt`
(SELECT a.`id`, a.`tenant_id`, a.`name`, ...
FROM `scrm_business_opportunity` AS a);
INSERT INTO `dwd_fact_scrm_business_opportunity_rt` (id, remark)
SELECT a.business_id, remark
FROM scrm_business_opportunity_ext AS a;
```
--
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]