Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Program Files
/
PostgreSQL
/
14
/
share
/
extension
/
Edit File Name :
lo--1.1.sql
/* contrib/lo/lo--1.1.sql */ -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION lo" to load this file. \quit -- -- Create the data type ... now just a domain over OID -- CREATE DOMAIN lo AS pg_catalog.oid; -- -- For backwards compatibility, define a function named lo_oid. -- -- The other functions that formerly existed are not needed because -- the implicit casts between a domain and its underlying type handle them. -- CREATE FUNCTION lo_oid(lo) RETURNS pg_catalog.oid AS 'SELECT $1::pg_catalog.oid' LANGUAGE SQL STRICT IMMUTABLE PARALLEL SAFE; -- This is used in triggers CREATE FUNCTION lo_manage() RETURNS pg_catalog.trigger AS 'MODULE_PATHNAME' LANGUAGE C;
Save