mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-20 04:35:00 +08:00
6 lines
322 B
SQL
6 lines
322 B
SQL
CREATE OR REPLACE FUNCTION _timescaledb_internal.murmur3_hash_string(text, int4) RETURNS int4
|
|
AS '$libdir/timescaledb', 'pg_murmur3_hash_string' LANGUAGE C IMMUTABLE STRICT;
|
|
|
|
CREATE OR REPLACE FUNCTION hash_string(bytea, int4) RETURNS int4
|
|
AS '$libdir/timescaledb', 'pg_murmur3_hash_string' LANGUAGE C IMMUTABLE STRICT;
|