You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/db/schema/migrations/oss/postgres/22/01_sentinel.up.sql

20 lines
464 B

-- Copyright IBM Corp. 2020, 2026
-- SPDX-License-Identifier: BUSL-1.1
begin;
create function wt_to_sentinel(string text) returns text
as $$
select concat(
u&'\fffe',
trim(trailing u&'\ffff' from trim(leading u&'\fffe ' from string)),
u&'\ffff'
);
$$ language sql
immutable
returns null on null input;
comment on function wt_to_sentinel is
'wt_to_sentinel takes a string and returns it as a wt_sentinel';
commit;