-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a META.json file to support pgxn distribution
- Loading branch information
1 parent
a5d1739
commit d00bd24
Showing
2 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "pgcollection", | ||
"abstract": "A collection data type", | ||
"description": "pgcollection is a memory optimized data type for PostgreSQL used as a high performance data structure inside of plpglsql functions to create associative arrays", | ||
"version": "0.9.0", | ||
"maintainer": "Jim Mlodgenski <[email protected]>", | ||
"license": "apache_2_0", | ||
"prereqs": { | ||
"runtime": { | ||
"requires": { | ||
"PostgreSQL": "14.0.0" | ||
} | ||
} | ||
}, | ||
"provides": { | ||
"pgcollection": { | ||
"file": "sql/collection--0.9.sql", | ||
"docfile": "pgcollection.md", | ||
"version": "0.9.0" | ||
} | ||
}, | ||
"resources": { | ||
"bugtracker": { | ||
"web": "https://github.com/aws/pgcollection/issues" | ||
}, | ||
"repository": { | ||
"url": "https://github.com/aws/pgcollection.git" , | ||
"web": "https://github.com/aws/pgcollection", | ||
"type": "git" | ||
} | ||
}, | ||
"meta-spec": { | ||
"version": "1.0.0", | ||
"url": "https://pgxn.org/meta/spec.txt" | ||
}, | ||
"tags": [ | ||
"data type", | ||
"compatibility", | ||
"associative array", | ||
"key value" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters