-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMETA.json
53 lines (53 loc) · 1.39 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "pgtt_rsl",
"abstract": "Extension to add Global Temporary Tables feature to PostgreSQL",
"description": "pgtt_rsl is a PostgreSQL extension to add Oracle-style Global Temporary Tables feature. It is based on unlogged table, Row Security Level and views.",
"version": "2.0.0",
"maintainer": "Gilles Darold <[email protected]>",
"license": {
"PostgreSQL": "http://www.postgresql.org/about/licence"
},
"release_status": "stable",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.5.0"
}
}
},
"provides": {
"pgtt_rsl": {
"file": "sql/pgtt_rsl--2.0.0.sql",
"docfile": "doc/pgtt_rsl.md",
"version": "2.0.0",
"abstract": "Extension to manage Global Temporary Tables using RSL"
},
"pgtt_bgw": {
"file": "pgtt_bgw.so",
"docfile": "doc/pgtt_bgw.md",
"version": "2.0.0",
"abstract": "Background worker to remove obsolete rows and tables for Global Temporary Tables RSL extension"
}
},
"meta-spec": {
"version": "1.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"tags": [
"global",
"temporary",
"table",
"bgw",
"background worker"
],
"resources": {
"bugtracker": {
"web": "https://github.com/darold/pgtt-rsl/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/darold/pgtt-rsl.git",
"web": "https://github.com/darold/pgtt-rsl.git"
}
}
}