Character Types
Table 1 lists the character data types supported by openGauss. For string operators and related built-in functions, see Character Processing Functions and Operators.
Table 1 Character types
NOTE:
- In addition to the restriction on the size of each column, the total size of each tuple cannot exceed 1 GB minus 1 byte and is affected by the control header information of the column, the control header information of the tuple, and whether null fields exist in the tuple.
- NCHAR is the alias of the bpchar type, and NCHAR(n) is the alias of the VARCHAR(n) type.
- Only advanced packages related to dbe_lob support CLOBs whose size is greater than 1 GB. System functions do not support CLOBs whose size is greater than 1 GB.
In openGauss, there are two other fixed-length character types, as shown in Table 2. The name type exists only for the storage of identifiers in the internal system catalogs and is not intended for use by general users. Its length is currently defined as 64 bytes (63 usable characters plus terminator). The type “char” only uses one byte of storage. It is internally used in the system catalogs as a simplistic enumeration type.
Table 2 Special character types
Examples
-- Create a table.
openGauss=# CREATE TABLE char_type_t1
(
CT_COL1 CHARACTER(4)
);
-- Insert data.
openGauss=# INSERT INTO char_type_t1 VALUES ('ok');
-- Query data in the table.
openGauss=# SELECT ct_col1, char_length(ct_col1) FROM char_type_t1;
ct_col1 | char_length
---------+-------------
ok | 4
(1 row)
-- Delete the table.
openGauss=# DROP TABLE char_type_t1;
-- Create a table.
openGauss=# CREATE TABLE char_type_t2
(
CT_COL1 VARCHAR(5)
);
-- Insert data.
openGauss=# INSERT INTO char_type_t2 VALUES ('ok');
openGauss=# INSERT INTO char_type_t2 VALUES ('good');
-- Specify the type length. An error is reported if an inserted string exceeds this length.
openGauss=# INSERT INTO char_type_t2 VALUES ('too long');
ERROR: value too long for type character varying(5)
CONTEXT: referenced column: ct_col1
-- Specify the type length. A string exceeding this length is truncated.
openGauss=# INSERT INTO char_type_t2 VALUES ('too long'::varchar(5));
-- Query data.
openGauss=# SELECT ct_col1, char_length(ct_col1) FROM char_type_t2;
ct_col1 | char_length
---------+-------------
ok | 2
good | 4
too l | 5
(3 rows)
-- Delete data.
openGauss=# DROP TABLE char_type_t2;
Feedback