Alternative of triggers in memsql

We have to migrate some triggers from SqlServer to memSQL.
please suggest alternatives.

Thanks in advance!!

Can I assume that we dont have any alternatives of triggers?
Correct?

Hi,

No, we don’t have any direct alternatives for triggers today.

I think the closest feature we have would PIPELINES into STORED PROCEDURES which let you run some logic as data is loaded via the pipeline (Introducing SingleStore Pipelines to Stored Procedures).

For relatively simple triggers, something like the ON DUPLICATE KEY UPDATE clause can also dot he job.

-Adam