An open API service indexing awesome lists of open source software.

https://github.com/rongfengliang/postgres-extension-demo

postgres-extension-demo
https://github.com/rongfengliang/postgres-extension-demo

docker docker-compose postgres-extension

Last synced: about 2 months ago
JSON representation

postgres-extension-demo

Awesome Lists containing this project

README

          

# create my demo postgresql extension

> this extension expose one fucntion just like oracle nvl

## how to use

* install

> use docker for build please note the location for extension

```code
docker-compose build
```

* useage

```code
CREATE EXTENSION nvlfunc;
SELECT NVL(NULL::SMALLINT, 121::SMALLINT);
```