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
|
{
"db_name": "SQLite",
"query": "\n insert into message\n (id, sender, channel, body, sent_at)\n values ($1, $2, $3, $4, $5)\n returning\n id as \"id: Id\",\n sender as \"sender: LoginId\",\n body,\n sent_at as \"sent_at: DateTime\"\n ",
"describe": {
"columns": [
{
"name": "id: Id",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "sender: LoginId",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "body",
"ordinal": 2,
"type_info": "Text"
},
{
"name": "sent_at: DateTime",
"ordinal": 3,
"type_info": "Text"
}
],
"parameters": {
"Right": 5
},
"nullable": [
false,
false,
false,
false
]
},
"hash": "40759cdaeb1dddcda384b8ea28a7421b39d697ae2211cfebe8caaf12072540c1"
}
|