IntegerRangePartition
import type { IntegerRangePartition } from "https://googleapis.deno.dev/v1/datastream:v1.ts";Integer range partitioning. see https://cloud.google.com/bigquery/docs/partitioned-tables#integer_range
interface IntegerRangePartition {
column?: string;
end?: bigint;
interval?: bigint;
start?: bigint;
}