https://github.com/tristan957/pg_extension
Template for C-based Postgres extensions
https://github.com/tristan957/pg_extension
postgresql-extension
Last synced: 2 months ago
JSON representation
Template for C-based Postgres extensions
- Host: GitHub
- URL: https://github.com/tristan957/pg_extension
- Owner: tristan957
- Created: 2024-11-12T04:56:44.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-12-30T21:51:12.000Z (5 months ago)
- Last Synced: 2025-03-06T10:46:25.420Z (3 months ago)
- Topics: postgresql-extension
- Language: Meson
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSES/CC0-1.0.txt
Awesome Lists containing this project
README
# `pg_extension`
This is a template repository for writing C-based Postgres extensions.
Any code in this repository is marked as [`CC0-1.0`](./LICENSES/CC0-1.0.txt)
unless marked otherwise.## Building
```shell
meson setup build
ninja -C build
```## Installing
```shell
meson install -C build
```