DmdlSemantics environment, AstAttribute attribute,
Map<String, AstAttributeElement> elements, OrcFileTrait result) {
AstLiteral stripeSize = take(environment, attribute, elements, ELEMENT_STRIPE_SIZE, LiteralKind.INTEGER);
if (stripeSize != null) {
String label = label(ELEMENT_STRIPE_SIZE);
BigInteger value = stripeSize.toIntegerValue();
if (AttributeUtil.checkRange(environment, stripeSize, label, value, MINIMUM_STRIPE_SIZE, Long.MAX_VALUE)) {
result.configuration().withStripeSize(value.longValue());
}
}
}