mirror of
https://github.com/postgres/postgres.git
synced 2026-03-07 15:50:44 -05:00
9 lines
214 B
MySQL
9 lines
214 B
MySQL
/* contrib/spi/autoinc.sql.in */
|
|
|
|
-- Adjust this setting to control where the objects get created.
|
|
SET search_path = public;
|
|
|
|
CREATE OR REPLACE FUNCTION autoinc()
|
|
RETURNS trigger
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C;
|