Rust AppView - highly experimental!
at main 769 B view raw
1INSERT INTO statuses (did, status, duration, record, embed_uri, embed_title, embed_description, thumb_mime_type, 2 thumb_cid, created_at) 3VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) 4ON CONFLICT (did) DO UPDATE SET status=EXCLUDED.status, 5 duration=EXCLUDED.duration, 6 record=EXCLUDED.record, 7 embed_uri=EXCLUDED.embed_uri, 8 embed_title=EXCLUDED.embed_title, 9 embed_description=EXCLUDED.embed_description, 10 thumb_mime_type=EXCLUDED.thumb_mime_type, 11 thumb_cid=EXCLUDED.thumb_cid, 12 indexed_at=NOW()