openGauss lo_truncate

techbing發表於2024-05-16

lo_truncate

功能描述

將一個大物件截斷成一個給定長度。

原型

int lo_truncate(PGconn* conn, int fd, size_t len);

引數

表 1 lo_truncate引數

關鍵字

引數說明

conn

一個資料庫連線

fd

檔案描述符

len

要截斷的長度

返回值

int:成功時返回0,失敗時返回值為-1。

lo_truncate64

功能描述

將一個(可能超過2GB大小)大物件截斷成一個給定長度。

原型

int lo_truncate64(PGconn *conn, int fd, long int len);

引數

表 1 lo_truncate64引數

關鍵字

引數說明

conn

一個資料庫連線

fd

檔案描述符

len

要截斷的長度

返回值

int:成功時返回0,失敗時返回值為-1。

示例

請參見示例章節。

詳情檢視:https://opengauss.org

詳情檢視:https://docs-opengauss.osinfra.cn

相關文章