enum NumericOverflowHandlingAction
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.Alpha.NumericOverflowHandlingAction |
![]() | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#NumericOverflowHandlingAction |
![]() | software.amazon.awscdk.services.glue.alpha.NumericOverflowHandlingAction |
![]() | aws_cdk.aws_glue_alpha.NumericOverflowHandlingAction |
![]() | @aws-cdk/aws-glue-alpha ยป NumericOverflowHandlingAction |
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 also: [https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under "TABLE PROPERTIES" > "numeric_overflow_handling"](https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_EXTERNAL_TABLE.html#r_CREATE_EXTERNAL_TABLE-parameters - under "TABLE PROPERTIES" > "numeric_overflow_handling")
Members
Name | Description |
---|---|
DISABLED | Invalid character handling is turned off. |
FAIL | Cancel the query when the data includes invalid characters. |
SET_TO_NULL | Set invalid characters to null. |
DROP_ROW | Set each value in the row to null. |
DISABLED
Invalid character handling is turned off.
FAIL
Cancel the query when the data includes invalid characters.
SET_TO_NULL
Set invalid characters to null.
DROP_ROW
Set each value in the row to null.