Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LongColumnStatisticsData

import type { LongColumnStatisticsData } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Defines column statistics supported for integer data columns.

interface LongColumnStatisticsData {
MaximumValue?: number | null;
MinimumValue?: number | null;
NumberOfDistinctValues: number;
NumberOfNulls: number;
}

§Properties

§
MaximumValue?: number | null
[src]

The highest value in the column.

§
MinimumValue?: number | null
[src]

The lowest value in the column.

§
NumberOfDistinctValues: number
[src]

The number of distinct values in a column.

§
NumberOfNulls: number
[src]

The number of null values in the column.