converting from bigint to bit to use bitwise operators - Mailing list pgsql-sql

From Aditya
Subject converting from bigint to bit to use bitwise operators
Date
Msg-id 20030421215020.GA71612@mighty.grot.org
Whole thread Raw
Responses Re: converting from bigint to bit to use bitwise operators  (Randall Lucas <rlucas@tercent.net>)
List pgsql-sql
For historical reasons, I have IPv4 addresses stored as bigint and I would
like to convert them to dot-quad (ie. A.B.C.D) in a select. This is how I
would normally do it (the remotehost column is the IP address as a bigint):

select ((remotehost::bit varying(32) >> 24) & 11111111) || '.' || ((remotehost::bit varying(32) & 11111100) >> 16) ||
'.'|| ((remotehost::bit varying(32) & 11110000) >>  8) || '.' || ((remotehost::bit varying(32) & 11000000)) as ip,
httpquery
fromweblogs
;

however this complains:
 ERROR:  Cannot cast type 'bigint' to 'bit varying'

hints?

Thanks,
Adi



pgsql-sql by date:

Previous
From: Randall Lucas
Date:
Subject: Re: PROBLEM WITH FUNCTIONS
Next
From: "Mario Alberto Soto Cordones"
Date:
Subject: Re: PROBLEM WITH FUNCTIONS