You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use this extension, and I'm facing a problem when trying to do a simple update on a table:
CREATE EXTENSION pg_ivm;
SELECT create_immv('my_awesome_view_program', 'SELECT * FROM program');
SELECT*from program where id =1234; # displays some rowSELECT*from my_awesome_view_program where id =1234; # displays the same rowUPDATE program SET title ='foo'WHERE id =1234; # Error: `[42883] ERROR: could not identify an equality operator for type json`
I used to have json fields, and tried to convert them into jsonb, but the error remains...
Thanks for your help!
bonus question: do you consider this extension safe and robust enough to be used in production? 😇
The text was updated successfully, but these errors were encountered:
nikophil
changed the title
Simple update causes Error
Simple update causes error
Feb 17, 2023
nikophil
changed the title
Simple update causes error
Simple update causes error with json fields
Feb 17, 2023
Hello,
I'm trying to use this extension, and I'm facing a problem when trying to do a simple update on a table:
I used to have
json
fields, and tried to convert them intojsonb
, but the error remains...Thanks for your help!
bonus question: do you consider this extension safe and robust enough to be used in production? 😇
The text was updated successfully, but these errors were encountered: