Skip to content

Query prepare & bind for qmark crashes #117

Open
@gijzelaerr

Description

@gijzelaerr

When running branch #110

and executing this code a couple of times we sometimes get a crash:

import monetdbe

con1 = monetdbe.connect()
con1.execute("create table test(i int, s text)")
con1.execute("insert into test(i, s) values (?, ?)", (5, "bla"))

con2 = monetdbe.connect()
con2.execute("create table test(i int, s text)")
con2.execute("insert into test(i, s) values (?, ?)", (5, "bla"))

con1.execute("insert into test(i, s) values (?, ?)", (5, "bla"))

Using Oct2020 (not Oct2020-sp1)

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions