Snowflake · Schema
ResultSetMetaData
Metadata about the result set including column definitions.
Data LakesData SharingData WarehousingDatabaseSQL
Properties
| Name | Type | Description |
|---|---|---|
| format | string | For v2 endpoints the only possible value for this field is jsonv2. |
| numRows | integer | The total number of rows of results. |
| rowType | array | Array of column descriptors for the result set. |
| partitionInfo | array | Information about result set partitions for large results. |
| nullable | boolean | If false, null values are replaced with the string 'null' in the result set. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ResultSetMetaData",
"type": "object",
"description": "Metadata about the result set including column definitions.",
"properties": {
"format": {
"type": "string",
"description": "For v2 endpoints the only possible value for this field is jsonv2."
},
"numRows": {
"type": "integer",
"description": "The total number of rows of results."
},
"rowType": {
"type": "array",
"description": "Array of column descriptors for the result set."
},
"partitionInfo": {
"type": "array",
"description": "Information about result set partitions for large results."
},
"nullable": {
"type": "boolean",
"description": "If false, null values are replaced with the string 'null' in the result set."
}
}
}