我试图在 Hadoop 上的 Cloudera Impala 的 python impyla 查询中转义字符,但似乎没有任何效果.. 模板语法没有转义(对于数据库 API 来说不寻常..)
cursor.execute('SELECT * from table where col1 = %s', tuple(["John's unescaped string"]))
产生错误。
甚至
cursor.execute('SELECT * from table where col1 = %s', tuple([json.dumps("John's unescaped string")]))
不起作用,有没有人知道如何为此提供解决方案?有没有更好的方法或更全功能的 Python 的 Impala 库?