抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
-- ip convert int
create or replace function inet_aton(ip text) returns int8 as $$

declare

v int;

res int8 :=0;

i int :=3;

begin

foreach v in array string_to_array(ip,'.') loop

res := res+v*(256^i);

i :=i-1;

end loop;

return res;

end;

$$ language plpgsql;

-- int convert ip

create or replace function inet_ntoa(ip int8) returns text as $$

declare

res text :='';

begin

res := res || ((ip >> 24) & (2^8-1)::int);

res :=res || '.' || ((ip >> 16) & (2^8-1)::int);

res :=res || '.' || ((ip >> 8) & (2^8-1)::int);

res :=res || '.' || (ip & (2^8-1)::int);

return res;

end;

$$ language plpgsql;

评论