Maximum limit on int in plpgsql

Lists: pgsql-jdbc
From: deepthi(at)granwill(dot)com
To: pgsql-jdbc(at)postgresql(dot)org
Subject: Maximum limit on int in plpgsql
Date: 2004-11-30 09:48:07
Message-ID: 1101808087.41ac41d7382a9@granwill.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Hello,

I am passing the ip address as a varchar. Eg: 133.9.4.11

Later on i am splitting the ip address with the delimiter as '.'

ip1t:= split_part($1,'.',1); // returns a text value
ip2t:= split_part($1,'.',2); // returns a text value
ip3t:= split_part($1,'.',3);
ip4t:= split_part($1,'.',4);

Then i am type casting it into an integer

select into ip1 cast(ip1t as integer);
select into ip2 cast(ip2t as integer);
select into ip3 cast(ip3t as integer);
select into ip4 cast(ip4t as integer);

The i am taking the sum using this formula

out_sum=ip1*256*256*256+ip2*256*256+ip3*256+ip4;

When i run the procedure i am getting following error
pg_atoi : Numerical result out of range

I tried all possible datatypes but still i am getting the same error.

Is it the problem of typecasting or the limits on datatype?

Thank you in advance,
deepthi


From: Kris Jurka <books(at)ejurka(dot)com>
To: deepthi(at)granwill(dot)com
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Maximum limit on int in plpgsql
Date: 2004-11-30 09:57:08
Message-ID: Pine.BSO.4.56.0411300454210.19416@leary.csoft.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

On Tue, 30 Nov 2004 deepthi(at)granwill(dot)com wrote:

> When i run the procedure i am getting following error
> pg_atoi : Numerical result out of range

http://www.postgresql.org/docs/7.4/static/datatype.html#DATATYPE-NUMERIC

This question has nothing to do with JDBC or Java and is not appropriate
for this list. Please try pgsql-general(at)postgresql(dot)org for this type of
question.

Kris Jurka


From: "mikael-aronsson" <mikael-aronsson(at)telia(dot)com>
To: <deepthi(at)granwill(dot)com>, <pgsql-jdbc(at)postgresql(dot)org>
Subject: Re: Maximum limit on int in plpgsql
Date: 2004-11-30 10:14:17
Message-ID: 002a01c4d6c5$5b0ebb50$bf95d1d9@w128mtec
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-jdbc

Hi !

pg_atoi sounds like a function that converts from a string to an integer so
the problem would be with the cast in that case, even though I cannot see
any problem with your example.

Mikael

----- Original Message -----
From: <deepthi(at)granwill(dot)com>
To: <pgsql-jdbc(at)postgresql(dot)org>
Sent: Tuesday, November 30, 2004 10:48 AM
Subject: [JDBC] Maximum limit on int in plpgsql

> Hello,
>
> I am passing the ip address as a varchar. Eg: 133.9.4.11
>
> Later on i am splitting the ip address with the delimiter as '.'
>
>
> ip1t:= split_part($1,'.',1); // returns a text value
> ip2t:= split_part($1,'.',2); // returns a text value
> ip3t:= split_part($1,'.',3);
> ip4t:= split_part($1,'.',4);
>
> Then i am type casting it into an integer
>
> select into ip1 cast(ip1t as integer);
> select into ip2 cast(ip2t as integer);
> select into ip3 cast(ip3t as integer);
> select into ip4 cast(ip4t as integer);
>
> The i am taking the sum using this formula
>
> out_sum=ip1*256*256*256+ip2*256*256+ip3*256+ip4;
>
> When i run the procedure i am getting following error
> pg_atoi : Numerical result out of range
>
> I tried all possible datatypes but still i am getting the same error.
>
> Is it the problem of typecasting or the limits on datatype?
>
> Thank you in advance,
> deepthi
>
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faqs/FAQ.html