Snowflake · Schema

PartitionInfo

Information about a partition of the result set.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
rowCount integer Number of rows in the partition.
compressedSize integer The partition size before decompression. This may not be present in every partition.
uncompressedSize integer The partition size after decompression.
View JSON Schema on GitHub

JSON Schema

snowflake-sql-rest-partition-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PartitionInfo",
  "type": "object",
  "description": "Information about a partition of the result set.",
  "properties": {
    "rowCount": {
      "type": "integer",
      "description": "Number of rows in the partition."
    },
    "compressedSize": {
      "type": "integer",
      "description": "The partition size before decompression. This may not be present in every partition."
    },
    "uncompressedSize": {
      "type": "integer",
      "description": "The partition size after decompression."
    }
  }
}