Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 311 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 311 Bytes

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

docker-compose build
  • useage
CREATE EXTENSION nvlfunc;
SELECT NVL(NULL::SMALLINT, 121::SMALLINT);