Skip to content

MariaDB version 11 is incompatible with MySQL - String columns are detected as Dec64 #208

Open
@hhaensel

Description

@hhaensel

column types are not correctly inferred when updating mariadb to version 11.
It's probably worthwhile switching to the latest mariadb c connector
with MariaDB Server 10:

julia> DataFrame(DBInterface.execute(conn, "select * from `benutzer`"))
2×1 DataFrame
 Row │ uname
     │ String?
─────┼─────────
   1 │ test
   2 │ rest

with MariaDB Server 11:

julia> DBInterface.execute(conn, "select * from `benutzer`") |> DataFrame
ERROR: ArgumentError: invalid number format test
Stacktrace:
  [1] parse(#unused#::Type{DecFP.Dec64}, s::String)
    @ DecFP C:\Users\helmu\.julia\packages\DecFP\Cud5F\src\DecFP.jl:323

If I store strings that can be parsed as numbers in the field 'uname' the columns are indeed read as Dec64.

julia> DataFrame(hh)
3×1 DataFrame
 Row │ uname
     │ Dec64
─────┼───────
   110.0
   211.0
   314.0

This behaviour is consistent with the (wrong) column type stored in the query result:

julia> res = DBInterface.execute(conn, "select * from `benutzer`");

julia> res.types
1-element Vector{Type}:
 Union{Missing, DecFP.Dec64}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions