사칙 연산을 수행하는 POSTGRES 익스텐션 만들기

이동욱

2022/09/17

Categories: 데이터베이스 Tags: 데이터베이스

확장 프로그램을 만드는 방법


# basic_oper extension
comment = 'basic oper class'
default_version = '0.0.1'
module_pathname = '$libdir/basic_oper'

SQL 스크립트


--complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "CREATE EXTENSION basic_oper" to load this file. \quit

CREATE FUNCTION get_sum(int, int) RETURNS int
AS '$libdir/basic_oper', 'get_sum'
LANGUAGE C IMMUTABLE STRICT;

참고 문헌


>> Home