Re: inet to bigint?

From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Michael Fuhr <mike(at)fuhr(dot)org>
Cc: Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: inet to bigint?
Date: 2005-12-06 07:51:17
Message-ID: 439542F5.7000703@familyhealth.com.au
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

PL/SQL or PL/PGSQL...

Chris

Michael Fuhr wrote:
> On Tue, Dec 06, 2005 at 03:31:59PM +0800, Christopher Kings-Lynne wrote:
>
>>OK, I give up - how do I convert an INET type to a NUMERIC
>>representation of its network address?
>
>
> How about:
>
> CREATE FUNCTION inet2num(inet) RETURNS numeric AS $$
> use Socket;
> return unpack("N", inet_aton($_[0]));
> $$ LANGUAGE plperlu IMMUTABLE STRICT;
>
> SELECT inet2num('127.0.0.1');
> inet2num
> ------------
> 2130706433
> (1 row)
>

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Fuhr 2005-12-06 08:05:12 Re: inet to bigint?
Previous Message hubert depesz lubaczewski 2005-12-06 07:48:53 Re: inet to bigint?