When bulk updating data from value list using execute statement with parameter tuples, a null value in the value list is being considered as data type varchar, therefor causing issue when inserting into a non-varchar column, e.g., a double precision. An example would be:
create table mytable (mykey varchar, myvalue double precision);
cur.execute("""update mytable t set (myvalue)=(v.myvalue) from (values %s, %s) v (mykey, myvalue) where t.mykey = v.mykey""", ([('key1', None),('key2', None)]))
the error from this query is:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
psycopg2.ProgrammingError: column "myvalue" is of type double precision but expression is of type text
LINE 1: update mytable t set (myvalue)=(v.myvalue) from (values ('ke...
^
HINT: You will need to rewrite or cast the expression.
How can I specify the data type for null value in the value list?
Either you cast it at the
set
clause as in @Gordon answer or give it a data type hint on the first value tuple: