1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
"db_name": "PostgreSQL",
"query": "select uuid, version, id, configuration as \"configuration: sqlx::types::Json<RuleConfiguration>\" from rule where\n id = $1 and version = $2",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "uuid",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "version",
"type_info": "Text"
},
{
"ordinal": 2,
"name": "id",
"type_info": "Text"
},
{
"ordinal": 3,
"name": "configuration: sqlx::types::Json<RuleConfiguration>",
"type_info": "Jsonb"
}
],
"parameters": {
"Left": [
"Text",
"Text"
]
},
"nullable": [
false,
true,
true,
false
]
},
"hash": "a853983577557f990db0631812e477619d05d6efe6990e3b62569037d4a22192"
}
|