forked from tvondra/pg_check
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMETA.json
34 lines (34 loc) · 1.09 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
{
"name": "pg_check",
"abstract": "Performs basic integrity checks of data files (page structure, tuple structure).",
"description": "When the database fails with a strange error and you suspect that might be caused by a data corruption, this tool might help you a it performs basic integrity checks - verifies page structure (lower/upper), placement of tuples on the page, etc.",
"version": "0.1.0",
"maintainer": "Tomas Vondra <tv@fuzzy.cz>",
"license": "bsd",
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.0.0"
}
}
},
"provides": {
"pg_check": {
"file": "sql/pg_check--0.1.0.sql",
"version": "0.1.0"
},
},
"resources": {
"repository": {
"url": "https://tvondra@github.com/tvondra/pg_check.git",
"web": "http://github.com/tvondra/pg_check",
"type": "git"
}
},
"tags" : ["check", "integrity", "structure", "data", "corruption"],
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
},
"release_status" : "testing"
}