-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrequest.json
More file actions
105 lines (105 loc) · 2.53 KB
/
Copy pathrequest.json
File metadata and controls
105 lines (105 loc) · 2.53 KB
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
100
101
102
103
104
105
{
"settings": {
"version": "2",
"engine": "mysql",
"schema": [
"CodegenTests/test-requests/DefaultSchemaEnum/schema.sql"
],
"queries": [
"CodegenTests/test-requests/DefaultSchemaEnum/query.sql"
],
"codegen": {
"out": "./CodegenTests/test-requests/DefaultSchemaEnum",
"plugin": "csharp",
"options": "eyJkZWJ1Z1JlcXVlc3QiOnRydWV9",
"process": {
"cmd": "./dist/LocalRunner"
}
}
},
"catalog": {
"defaultSchema": "public",
"schemas": [
{
"name": "public",
"tables": [
{
"rel": {
"name": "dummy_table"
},
"columns": [
{
"name": "dummy_column",
"length": 1,
"table": {
"name": "dummy_table"
},
"type": {
"name": "dummy_table_dummy_column"
}
}
]
}
],
"enums": [
{
"name": "dummy_table_dummy_column",
"vals": [
"x",
"y"
]
}
]
}
]
},
"queries": [
{
"text": "SELECT dummy_column FROM dummy_table LIMIT 1",
"name": "TestOne",
"cmd": ":one",
"columns": [
{
"name": "dummy_column",
"length": 1,
"table": {
"name": "dummy_table"
},
"type": {
"name": "dummy_table_dummy_column"
},
"originalName": "dummy_column"
}
],
"filename": "query.sql"
},
{
"text": "INSERT INTO dummy_table (dummy_column) VALUES (?)",
"name": "TestInsert",
"cmd": ":exec",
"parameters": [
{
"number": 1,
"column": {
"name": "dummy_column",
"length": 1,
"table": {
"schema": "public",
"name": "dummy_table"
},
"type": {
"name": "dummy_table_dummy_column"
},
"originalName": "dummy_column"
}
}
],
"filename": "query.sql",
"insert_into_table": {
"name": "dummy_table"
}
}
],
"sqlc_version": "v1.27.0",
"plugin_options": "eyJvdmVycmlkZURyaXZlclZlcnNpb24iOiIiLCJnZW5lcmF0ZUNzcHJvaiI6dHJ1ZSwidGFyZ2V0RnJhbWV3b3JrIjoibmV0OC4wIiwibmFtZXNwYWNlTmFtZSI6IiIsInVzZURhcHBlciI6ZmFsc2UsIm92ZXJyaWRlRGFwcGVyVmVyc2lvbiI6IiIsIm92ZXJyaWRlcyI6bnVsbCwiZGVidWdSZXF1ZXN0IjpmYWxzZX0="
}