Generate a long decimal TypePtr with random / special precision and scale.
| 233 | |
| 234 | // Generate a long decimal TypePtr with random / special precision and scale. |
| 235 | inline TypePtr randLongDecimalType(FuzzerGenerator& rng) { |
| 236 | auto [precision, scale] = randPrecisionScale( |
| 237 | rng, LongDecimalType::kMinPrecision, LongDecimalType::kMaxPrecision); |
| 238 | return DECIMAL(precision, scale); |
| 239 | } |
| 240 | |
| 241 | Timestamp randTimestamp( |
| 242 | FuzzerGenerator& rng, |
no test coverage detected