Values.ColumnInfoSourceInformation about the columns in a query execution result.
type nonrec t = {catalogName : String_.t option;The catalog to which the query results belong.
*)schemaName : String_.t option;The schema name (database name) to which the query results belong.
*)tableName : String_.t option;The table name for the query results.
*)name : String_.t option;The name of the column.
*)label : String_.t option;A column label.
*)type_ : String_.t option;The data type of the column.
*)precision : Integer.t option;For DECIMAL data types, specifies the total number of digits, up to 38. For performance reasons, we recommend up to 18 digits.
*)scale : Integer.t option;For DECIMAL data types, specifies the total number of digits in the fractional part of the value. Defaults to 0.
*)nullable : ColumnNullable.t option;Unsupported constraint. This value always shows as UNKNOWN.
*)caseSensitive : Boolean.t option;Indicates whether values in the column are case-sensitive.
*)}