-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions-drop.sql
32 lines (31 loc) · 1.67 KB
/
functions-drop.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
drop function to_location (pos int, data text);
drop function to_size (pos int, data text);
drop function to_raw_bytes (pos int, data text);
drop function to_bytes (pos int, data text);
drop function to_fixed_bytes (pos int, data text, size int);
drop function to_string (pos int, data text);
drop function to_address (pos int, data text);
drop function to_bool (pos int, data text);
drop function to_element (pos int, data text, type text);
drop function to_array (pos int, data text, type text);
drop function to_fixed_array (pos int, data text, type text, size int);
drop function to_uint128 (pos int, data text);
drop function can_convert_to_decimal (pos int, data text);
drop function to_part (pos int, data text, pos_part int, bits int);
drop function to_positive (pos int, data text, pos_part int, bits int);
drop function to_uint32 (pos int, data text);
drop function to_uint64 (pos int, data text);
drop function to_binary (pos int, data text, pos_part int, bits int);
drop function is_positive (pos int, data text, pos_part int, bits int);
drop function to_negative (pos int, data text, pos_part int, bits int);
drop function to_int32 (pos int, data text);
drop function to_int64 (pos int, data text);
drop function to_uint128 (pos int, data text) returns dec immutable
drop function to_uint32_array (pos int, data text);
drop function to_uint64_array (pos int, data text);
drop function to_uint128_array (pos int, data text);
drop function has_part (pos int, data text, pos_part int, bits int);
drop function can_overflow (pos int, data text);
drop function to_uint128_array_or_null (pos int, data text);
drop function to_decimal (pos int, data text);
drop function to_uint256 (pos int, data text);