Updated on 2023-12-22 GMT+08:00

GAUSS-03121 -- GAUSS-03130

GAUSS-03121: "invalid symbol"

SQLSTATE: 22023

Description: The input character is invalid.

Solution: Ensure that the input parameter is valid.

GAUSS-03122: "invalid end sequence"

SQLSTATE: 22023

Description: The string parsing is incomplete.

Solution: Ensure that the input parameter is valid.

GAUSS-03123: "'char' out of range"

SQLSTATE: 22003

Description: Overflows occur when int4 is converted to char.

Solution: Ensure that the input parameter is valid.

GAUSS-03124: "invalid input syntax for type oid: '%s'"

SQLSTATE: 22P02

Description: A syntax error occurs when the input string is converted to the OID type.

Solution: Ensure that the input parameter is valid.

GAUSS-03125: "value '%s' is out of range for type oid"

SQLSTATE: 22003

Description: The value is out of the OID value range.

Solution: Ensure that the input parameter is valid.

GAUSS-03126: "oidvector has too many elements"

SQLSTATE: 22023

Description: The OID array has too many element values.

Solution: A maximum of 666 values are supported.

GAUSS-03127: "invalid oidvector data"

SQLSTATE: 22P03

Description: The type of the elements in the OID array is not OID.

Solution: Ensure that the input parameter is valid.

GAUSS-03128: "type %s is not a domain"

SQLSTATE: 42804

Description: The current domainType is a data type rather than a domain type.

Solution: Ensure that the input parameter is valid.

GAUSS-03129: "typmod array must be type cstring[]"

SQLSTATE: 2202E

Description: The type of the array processed in the current function is not cstring.

Solution: Ensure that the type of the array processed in the current function is cstring.

GAUSS-03130: "typmod array must be one-dimensional"

SQLSTATE: 2202E

Description: The array processed by the current function must be one-dimensional.

Solution: Check the array dimension.