github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/benchmarks/aurora/trx/write-only.sql (about)

     1  
     2  BEGIN
     3  
     4  UPDATE sbtest@tableNo SET k=k+1 WHERE id=@id
     5  
     6  UPDATE sbtest@tableNo SET c=@c WHERE id=@id
     7  
     8  DELETE FROM sbtest@tableNo WHERE id=@del_id
     9  
    10  INSERT INTO sbtest@tableNo (id, k, c, pad) VALUES (@del_id, @k, @c, @pad)
    11  
    12  COMMIT