Re: inet to bigint? - Mailing list pgsql-hackers

From Michael Fuhr
Subject Re: inet to bigint?
Date
Msg-id 20051206074428.GA76801@winnie.fuhr.org
Whole thread Raw
In response to inet to bigint?  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
Responses Re: inet to bigint?  (hubert depesz lubaczewski <depesz@gmail.com>)
Re: inet to bigint?  (Christopher Kings-Lynne <chriskl@familyhealth.com.au>)
List pgsql-hackers
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)

-- 
Michael Fuhr


pgsql-hackers by date:

Previous
From: Christopher Kings-Lynne
Date:
Subject: inet to bigint?
Next
From: hubert depesz lubaczewski
Date:
Subject: Re: inet to bigint?