-
Notifications
You must be signed in to change notification settings - Fork 7
Open

Description
Parsing error in handling a correct query
To Reproduce
import monetdbe
conn= monetdbe.connect(':memory:')
cur = conn.cursor()
res= cur.execute("create table tmp(i integer, s string)")
res= cur.execute("insert into tmp values(123, 'hello''world'':\n ERROR');");
rows = res.fetchall()
print(rows)
raise ProgrammingError(f"unexpected symbol '{symbol}' in operation")
monetdbe.exceptions.ProgrammingError: unexpected symbol ':' in operation
Expected behavior
This is a normal query string that works on MonetDB
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working