Files
grafana/pkg/storage/unified/sql/testdata/sqlite--resource_blob_insert-basic.sql

25 lines
334 B
SQL
Executable File

INSERT INTO "resource_blob"
(
"uuid",
"created",
"group",
"resource",
"namespace",
"name",
"value",
"hash",
"content_type"
)
VALUES (
'abc',
'2023-12-31 21:00:00 +0000 UTC',
'g',
'r',
'x',
'name',
'[97 98 99 100 101 102 103]',
'xxx',
'text/plain'
)
;