mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 23:52:19 +08:00

* Batch write events * Improve instrumentation * Measure batch phases * Detect lock contention * remove the execBatch goroutine * removing tracing prefix * detect context cancel * batch channel map
14 lines
307 B
SQL
Executable File
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'
|
|
;
|