This is an automated email from the ASF dual-hosted git repository.
jinsongzhou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git
The following commit(s) were added to refs/heads/master by this push:
new c56005fe5 [Improvement] Rename arctic identifier in terminal's SQL
shortcuts (#3075)
c56005fe5 is described below
commit c56005fe56f93e134d2145a9479bdb24d0b5af8d
Author: tcodehuber <[email protected]>
AuthorDate: Wed Aug 7 20:03:29 2024 +0800
[Improvement] Rename arctic identifier in terminal's SQL shortcuts (#3075)
[Improvement] Rename name with arctic identifier in terminal's SQL shortcuts
---
.../main/java/org/apache/amoro/server/dashboard/model/SqlExample.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/amoro-ams/amoro-ams-server/src/main/java/org/apache/amoro/server/dashboard/model/SqlExample.java
b/amoro-ams/amoro-ams-server/src/main/java/org/apache/amoro/server/dashboard/model/SqlExample.java
index a15bb9c5f..94db5b8e1 100644
---
a/amoro-ams/amoro-ams-server/src/main/java/org/apache/amoro/server/dashboard/model/SqlExample.java
+++
b/amoro-ams/amoro-ams-server/src/main/java/org/apache/amoro/server/dashboard/model/SqlExample.java
@@ -27,7 +27,7 @@ public enum SqlExample {
+ " name string, \n"
+ " ts timestamp,\n"
+ " primary key (id)\n"
- + ") using arctic \n"
+ + ") using mixed_iceberg \n"
+ "partitioned by (days(ts)) \n"
+ "tblproperties ('table.props' = 'val');"),
DELETE_TABLE("DeleteTable", "drop table db_name.table_name;"),