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": "\n delete from rule\n where id = $1 and version = $2\n returning id, uuid, version, configuration as \"configuration: sqlx::types::Json<RuleConfiguration>\"\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Text"
},
{
"ordinal": 1,
"name": "uuid",
"type_info": "Uuid"
},
{
"ordinal": 2,
"name": "version",
"type_info": "Text"
},
{
"ordinal": 3,
"name": "configuration: sqlx::types::Json<RuleConfiguration>",
"type_info": "Jsonb"
}
],
"parameters": {
"Left": [
"Text",
"Text"
]
},
"nullable": [
true,
false,
true,
false
]
},
"hash": "7cff078d0d3b77228a5f4b407e56d09cdb28ed976721da2c943e78cfbf361fb9"
}
|