Binary Types
Table 1 lists the binary data types supported by openGauss.
Table 1 Binary data types
Name | Description | Storage Space |
---|
BLOB | Binary large object (BLOB). NOTE:Column storage cannot be used for the BLOB type. | Its maximum length is 32 TB (35184372088832 bytes). |
RAW | Variable-length hexadecimal string. NOTE:Column storage cannot be used for the raw type. | 4 bytes plus the actual hexadecimal string. Its maximum length is 1073733621 bytes (1 GB – 8203 bytes). |
BYTEA | Variable-length binary string. | 4 bytes plus the actual binary string. Its maximum length is 1073733621 bytes (1 GB – 8203 bytes). |
BYTEAWITHOUTORDERWITHEQUALCOL | Variable-length binary character string (new type for the encryption feature. If the encryption type of the encrypted column is specified as deterministic encryption, the column type is BYTEAWITHOUTORDERWITHEQUALCOL). The original data type is displayed when the encrypted table is printed by running the meta command. | 4 bytes plus the actual binary string. The maximum value is 1073741771 bytes (1 GB – 53 bytes). |
BYTEAWITHOUTORDERCOL | Variable-length binary character string (new type for the encryption feature. If the encryption type of the encrypted column is specified as random encryption, the column type is BYTEAWITHOUTORDERCOL). The original data type is displayed when the encrypted table is printed by running the meta command. | 4 bytes plus the actual binary string. The maximum value is 1073741771 bytes (1 GB – 53 bytes). |
_BYTEAWITHOUTORDERWITHEQUALCOL | Variable-length binary character string, which is a new type for the encryption feature. | 4 bytes plus the actual binary string. The maximum value is 1073741771 bytes (1 GB – 53 bytes). |
_BYTEAWITHOUTORDERCOL | Variable-length binary character string, which is a new type for the encryption feature. | 4 bytes plus the actual binary string. The maximum value is 1073741771 bytes (1 GB – 53 bytes). |
NOTE:
- In addition to the size limitation on each column, the total size of each tuple is 1073733621 bytes (1 GB to 8203 bytes).
- BYTEAWITHOUTORDERWITHEQUALCOL, BYTEAWITHOUTORDERCOL, _BYTEAWITHOUTORDERWITHEQUALCOL, and _BYTEAWITHOUTORDERCOL cannot be directly used to create a table.
Example:
-- Create a table.
openGauss=# CREATE TABLE blob_type_t1
(
BT_COL1 INTEGER,
BT_COL2 BLOB,
BT_COL3 RAW,
BT_COL4 BYTEA
) ;
-- Insert data.
openGauss=# INSERT INTO blob_type_t1 VALUES(10,empty_blob(),
HEXTORAW('DEADBEEF'),E'\\xDEADBEEF');
-- Query data in the table.
openGauss=# SELECT * FROM blob_type_t1;
bt_col1 | bt_col2 | bt_col3 | bt_col4
---------+---------+----------+------------
10 | | DEADBEEF | \xdeadbeef
(1 row)
-- Delete the table.
openGauss=# DROP TABLE blob_type_t1;
openGauss 2024-10-08 01:19:39