ResultSetMetadata

Metadata about a ResultSet or PartialResultSet.

JSON representation
{
  "rowType": {
    object (StructType)
  },
  "transaction": {
    object (Transaction)
  }
}
Fields
rowType

object (StructType)

Indicates the field names and types for the rows in the result set. For example, a SQL query like "SELECT UserId, UserName FROM Users" could return a rowType value like:

"fields": [
  { "name": "UserId", "type": { "code": "INT64" } },
  { "name": "UserName", "type": { "code": "STRING" } },
]
transaction

object (Transaction)

If the read or SQL query began a transaction as a side-effect, the information about the new transaction is yielded here.