mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-07-24 09:59:50 +00:00

Similiar to description property, this property returns a dictionary with complete metadata. The dictionary contains the following keys: - catalog: catalog (always 'def') - schema: current schema - field: alias column name or if no alias was specified column name - org_field: original column name - table: alias table name or if no alias was specified table name - org_table: original table name - type: column type - charset: character set (utf8mb4 or binary) - length: The length of the column - max length: The maximum length of the column - decimals: The numer of decimals - flags: Flags (flags are defined in constants.FIELD_FLAG) - ext_type: Extended data type (types are defined in constants.EXT_FIELD_TYPE) This fixes also CONPY-270: Instead of checking BINARY_FLAG we now check character set for binary object types.