NumericOverflowHandlingAction
- class aws_cdk.aws_glue_alpha.NumericOverflowHandlingAction(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
Bases:
Enum
(experimental) 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”
- Stability:
experimental
Attributes
- DISABLED
(experimental) Invalid character handling is turned off.
- Stability:
experimental
- DROP_ROW
(experimental) Set each value in the row to null.
- Stability:
experimental
- FAIL
(experimental) Cancel the query when the data includes invalid characters.
- Stability:
experimental
- SET_TO_NULL
(experimental) Set invalid characters to null.
- Stability:
experimental