Files
grafana/pkg/storage/unified/sql/testdata/mysql--resource_update-single path.sql
Georges Chaudy 3589baac68 Unistore: Batch write events (#101381)
* Batch write events

* Improve instrumentation

* Measure batch phases

* Detect lock contention

* remove the execBatch goroutine

* removing tracing prefix

* detect context cancel

* batch channel map
2025-03-13 10:24:12 +02:00

14 lines
307 B
SQL
Executable File

UPDATE `resource`
SET
`guid` = '',
`value` = '[]',
`folder` = 'fldr',
`action` = 'UNKNOWN',
`resource_version` = 0
WHERE 1 = 1
AND `group` = 'gg'
AND `resource` = 'rr'
AND `namespace` = 'nn'
AND `name` = 'name'
;