Skip to content

Implement insert on conflict

As far as we use non-SQL insertion for sbroad and manually insert tuples into the space with the space API, we can add conflict resolution strategies:

  • do nothing (leave old tuple)
  • do replace (replace with a new tuple)

The syntax can be inspired by postgres.

Edited by Denis Smirnov