-
Notifications
You must be signed in to change notification settings - Fork 5
/
META.json
39 lines (39 loc) · 1.18 KB
/
META.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
{
"name": "file_textarray_fdw",
"abstract": "Access to text files where each row is returned as an array of text",
"description": "Similar to the file Foreign data wrapper, but useful for handling cases where the number of fields per line is unknown or varies.",
"version": "1.0.1",
"maintainer": [
"Andrew Dunstan <andrew@dunslane.net>"
],
"license": "postgresql",
"provides": {
"file_textarray_fdw": {
"abstract": "Access to text files where each row is returned as an array of text",
"file": "file_textarray_fdw.sql",
"docfile": "README.md",
"version": "1.0.1"
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/adunstan/file_text_array_fdw/issues"
},
"repository": {
"url": "git://github.com/adunstan/file_text_array_fdw.git",
"web": "https://github.com/adunstan/file_text_array_fdw.git",
"type": "git"
}
},
"generated_by": "Andrew Dunstan",
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"foreign data wrapper",
"text file",
"text array",
"ragged csv"
]
}