代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/387667/2556921
sql cube.sql
-- Create the user-defined type for N-dimensional boxes
--
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION cube_in(cstring)
RET
www.eeworm.com/read/387667/2556925
sql ltree.sql
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE FUNCTION ltree_in(cstring)
RETURNS ltree
AS '$libdir/ltree'
LANGUAGE C RETURNS NULL ON NULL INPUT;
C
www.eeworm.com/read/387667/2556926
sql timetravel.sql
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION timetravel()
RETURNS trigger
AS '$libdir/timetravel'
LANGUAGE C;
CREATE OR REP
www.eeworm.com/read/387667/2556929
sql pgcrypto.sql
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION digest(text, text)
RETURNS bytea
AS '$libdir/pgcrypto', 'pg_digest'
LANGUAGE C IM
www.eeworm.com/read/387667/2556931
sql isn.sql
--
-- PostgreSQL code for ISNs (ISBN, ISMN, ISSN, EAN13, UPC)
-- Copyright (c) 2004-2006, German Mendez Bravo (Kronuz)
--
-- $PostgreSQL: pgsql/contrib/isn/isn.sql.in,v 1.4 2006/11/24 18:44:37 tgl Ex
www.eeworm.com/read/387667/2556934
sql dblink.sql
-- dblink_connect now restricts non-superusers to password
-- authenticated connections
CREATE OR REPLACE FUNCTION dblink_connect (text)
RETURNS text
AS '$libdir/dblink','dblink_connect'
LANGUAGE C ST
www.eeworm.com/read/387667/2556936
sql pgxml.sql
--SQL for XML parser
CREATE OR REPLACE FUNCTION xml_is_well_formed(text) RETURNS bool
AS '$libdir/pgxml' LANGUAGE C STRICT IMMUTABLE;
-- deprecated old name for xml_is_well_formed
CREATE OR REPLACE
www.eeworm.com/read/387667/2556938
sql fuzzystrmatch.sql
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE FUNCTION levenshtein (text,text) RETURNS int
AS '$libdir/fuzzystrmatch','levenshtein'
LANGUAGE C IMMU
www.eeworm.com/read/387667/2556939
sql hstore.sql
SET search_path = public;
BEGIN;
CREATE FUNCTION hstore_in(cstring)
RETURNS hstore
AS '$libdir/hstore'
LANGUAGE 'C' with (isstrict);
CREATE FUNCTION hstore_out(hstore)
RETURNS cstring
AS '$libdir/h
www.eeworm.com/read/387667/2556940
sql autoinc.sql
-- Adjust this setting to control where the objects get created.
SET search_path = public;
CREATE OR REPLACE FUNCTION autoinc()
RETURNS trigger
AS '$libdir/autoinc'
LANGUAGE C;