From 47f82310fd6df88f21845d1cb986b0cecebf48da Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Thu, 5 Oct 2023 16:09:26 +0900 Subject: [PATCH] Add META.json for PGXN distribution Per pull request #158. Author: Jeremy Schneider, with a couple of tweaks from me. Backpatch-through: 12 --- META.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 META.json diff --git a/META.json b/META.json new file mode 100644 index 0000000..08cd7eb --- /dev/null +++ b/META.json @@ -0,0 +1,45 @@ +{ + "name": "pg_hint_plan13", + "abstract": "Query hints in SQL comments", + "description": "This library adds support for query hints in SQL comments in PostgreSQL 13.", + "version": "1.3.9", + "maintainer": [ + "Michael Paquier " + ], + "license": "bsd", + "prereqs": { + "runtime": { + "requires": { + "PostgreSQL": ">= 13.0.0, < 14.0.0" + } + } + }, + "provides": { + "pg_hint_plan": { + "abstract": "Query hints in SQL comments", + "file": "pg_hint_plan--1.3.0.sql", + "docfile": "README.md", + "version": "1.3.9" + } + }, + "resources": { + "bugtracker": { + "web": "https://github.com/ossc-db/pg_hint_plan/issues" + }, + "repository": { + "url": "https://github.com/ossc-db/pg_hint_plan.git", + "web": "https://github.com/ossc-db/pg_hint_plan/", + "type": "git" + } + }, + "meta-spec": { + "version": "1.0.0", + "url": "https://pgxn.org/meta/spec.txt" + }, + "tags": [ + "sql", + "plan", + "performance", + "hint" + ] +}