This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsqlx-data.json
99 lines (99 loc) · 2.04 KB
/
sqlx-data.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"db": "PostgreSQL",
"23e708b95cd26e9b7561f3aee347267d3c5459f1fc6cee4cddceb6d440630a93": {
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Uuid"
},
{
"name": "destination",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "hash",
"ordinal": 2,
"type_info": "Text"
}
],
"nullable": [
false,
false,
false
],
"parameters": {
"Left": [
"Uuid",
"Text",
"Text"
]
}
},
"query": "INSERT INTO links (id, destination, hash)\n VALUES ($1, $2, $3)\n RETURNING id, destination, hash\n "
},
"a456a1513e3fbe0f849f44720bbced7783201b6d0e8648ce48733c198cd655e2": {
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Uuid"
},
{
"name": "destination",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "hash",
"ordinal": 2,
"type_info": "Text"
}
],
"nullable": [
false,
false,
false
],
"parameters": {
"Left": [
"Text"
]
}
},
"query": "SELECT id, destination, hash FROM links WHERE hash = $1"
},
"ccca6f2d58b00f20bc048325112bd0c3b064b113765af87c7b30a9d36c7f7eec": {
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Uuid"
},
{
"name": "destination",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "hash",
"ordinal": 2,
"type_info": "Text"
}
],
"nullable": [
false,
false,
false
],
"parameters": {
"Left": []
}
},
"query": "SELECT id, destination, hash FROM links ORDER BY destination"
}
}