This is an automated email from the ASF dual-hosted git repository.
xuba 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 7e3989048 [AMORO-3938] change file_content_b64 column type to CLOB
type (#3939)
7e3989048 is described below
commit 7e3989048fd6fcf2df06d10de71aac61b05bd194
Author: simonsssu <[email protected]>
AuthorDate: Mon Nov 17 16:02:29 2025 +0800
[AMORO-3938] change file_content_b64 column type to CLOB type (#3939)
---
amoro-ams/src/main/resources/derby/ams-derby-init.sql | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/amoro-ams/src/main/resources/derby/ams-derby-init.sql
b/amoro-ams/src/main/resources/derby/ams-derby-init.sql
index 9cbd133e4..b56370675 100644
--- a/amoro-ams/src/main/resources/derby/ams-derby-init.sql
+++ b/amoro-ams/src/main/resources/derby/ams-derby-init.sql
@@ -212,7 +212,7 @@ CREATE TABLE api_tokens (
CREATE TABLE platform_file (
id INT GENERATED ALWAYS AS IDENTITY,
file_name VARCHAR(100) NOT NULL,
- file_content_b64 LONG VARCHAR NOT NULL,
+ file_content_b64 CLOB NOT NULL,
file_path VARCHAR(100),
add_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
CONSTRAINT platform_file_pk PRIMARY KEY (id)