lvector_sync_update

Signature:

CREATE PROCEDURE lvector_sync_update(table_name LVARCHAR, id BIGINT, embedding lvector_embedding, metadata LVARCHAR);

Purpose: Syncs an updated Informix row into the lvector backing table.

Example:
BEGIN WORK;
EXECUTE PROCEDURE lvector_sync_update(
'docs_demo',
1,
lvector_in('[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]'),
'updated document'
);
COMMIT WORK;