nuodb-python icon indicating copy to clipboard operation
nuodb-python copied to clipboard

Doesn't understand 'binary varying' datatype

Open TheDistributor opened this issue 2 years ago • 0 comments

Create a table like this:

        sql.execute("CREATE TABLE t1_binary ( f1 BINARY, f2 BINARY(5), f3 VARBINARY(5), f4 BINARY LARGE OBJECT, f5 BLOB (5K));")
        sql.execute("INSERT INTO t1_binary VALUES ('a',0x12345678,'abc','abc','abc');")

And then try to select * from it over the pynuodb driver, you get: DataError: 'received unknown column type from the database "binary varying"'

TheDistributor avatar Apr 25 '22 14:04 TheDistributor