NumericOverflowHandlingAction

class aws_cdk.aws_glue.NumericOverflowHandlingAction(*values)

Bases: Enum

Specifies the action to perform when ORC data contains an integer (for example, BIGINT or int64) that is larger than the column definition (for example, SMALLINT or int16).

See:

https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under “TABLE PROPERTIES” > “numeric_overflow_handling”

Attributes

DISABLED

Invalid character handling is turned off.

DROP_ROW

Set each value in the row to null.

FAIL

Cancel the query when the data includes invalid characters.

SET_TO_NULL

Set invalid characters to null.