when I want to update a set item in Cassandra table with python code like following
ps = session.prepare( """ UPDATE test,tbl SET val = val + {'?'} where name = ? and id = ?;""" )
bs = bind(ps, ['name', 'name', 1])
session.execute(bs)
I got error
Too many arguments provided to bind() (got 3, expected 2)
the problem is {'?'} that cant identified by prepared. I test {\'?\'} but nothing change.