This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 97fe945bf3b branch-4.1: [fix](case)fix iceberg unstable case. #63542
(#63710)
97fe945bf3b is described below
commit 97fe945bf3ba857c5875f3f3144c58622e486ad0
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed May 27 15:47:01 2026 +0800
branch-4.1: [fix](case)fix iceberg unstable case. #63542 (#63710)
Cherry-picked from #63542
Co-authored-by: daidai <[email protected]>
---
.../scripts/create_preinstalled_scripts/iceberg/run27.sql | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git
a/docker/thirdparties/docker-compose/iceberg/scripts/create_preinstalled_scripts/iceberg/run27.sql
b/docker/thirdparties/docker-compose/iceberg/scripts/create_preinstalled_scripts/iceberg/run27.sql
index 7c364fa7971..cba746c261a 100644
---
a/docker/thirdparties/docker-compose/iceberg/scripts/create_preinstalled_scripts/iceberg/run27.sql
+++
b/docker/thirdparties/docker-compose/iceberg/scripts/create_preinstalled_scripts/iceberg/run27.sql
@@ -1,7 +1,7 @@
use demo.test_db;
-
-create table if not exists test_rewrite_data_with_update (
+drop table if exists test_rewrite_data_with_update;
+create table test_rewrite_data_with_update (
id INT,
name STRING
)
@@ -21,7 +21,8 @@ update test_rewrite_data_with_update set name = "bb" where
id = 1;
-create table if not exists test_rewrite_data_with_delete (
+drop table if exists test_rewrite_data_with_delete;
+create table test_rewrite_data_with_delete (
id INT,
name STRING
)
@@ -37,4 +38,4 @@ TBLPROPERTIES (
INSERT INTO test_rewrite_data_with_delete VALUES
(1, 'a'),(2, 'b'),(3, 'c');
-delete from test_rewrite_data_with_delete where id = 1;
\ No newline at end of file
+delete from test_rewrite_data_with_delete where id = 1;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]