WilliamTan778 opened a new issue, #4920: URL: https://github.com/apache/seatunnel/issues/4920
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/seatunnel/issues?q=is%3Aissue+label%3A%22bug%22) and found no similar issues. ### What happened <img width="828" alt="image" src="https://github.com/apache/seatunnel/assets/41814775/41e9c0de-d0d4-4549-b66e-0737f08812ed"> dropPartitions Although the data has not been deleted, it may cause the previous partition to no longer exist and the business cannot use it. Should the partition not be deleted ### SeaTunnel Version 2.3.1 ### SeaTunnel Config ```conf env { execution.parallelism = 3 job.name="test_hive_source_to_hive" } source { Hive { result_table_name = "fake" table_name = "default.test_hive_source" metastore_uri = "thrift://172.30.1.185:9083" } } transform { Sql { source_table_name = "fake" result_table_name = "fake1" query = "select test_tinyint,test_smallint,test_int,test_bigint, test_boolean,test_float,test_double,test_string, test_binary,test_timestamp,test_decimal,test_char,test_varchar,test_date, test_par1 as test_par2,test_par2 as test_par1 from fake" } } sink { Hive { source_table_name = "fake1" table_name = "default.test_hive_sink_text_simple1" metastore_uri = "thrift://172.30.1.185:9083" } } ``` ### Running Command ```shell ./bin/start-seatunnel-spark-3-connector-v2.sh \ --master "local[*]" \ --deploy-mode client \ --config test/hive.conf ``` ### Error Exception ```log no error, Logical processing problems ``` ### Flink or Spark Version spark-3.3.0-bin-hadoop2 ### Java or Scala Version Corretto-11.0.19.7.1 ### Screenshots _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
