Re: Error with functions

From: shyamperi(at)davlin(dot)co(dot)in
To: shyamperi(at)davlin(dot)co(dot)in
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Error with functions
Date: 2003-09-20 07:00:42
Message-ID: 4296516.1064041686563.JavaMail.tomcat@mail.davlin.co.in
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hey,
PostgreSQL 7.3 on i686-pc-linux-gnu, compiled by GCC 2.96

But, I am getting error when I am using the alias key word.
And also when I try to create a C function for the same and excute I am getting the following error
ERROR: Memory exhausted in AllocSetAlloc(677865842)
And, I am allocating memory using the "palloc"
-----
Warm Regards
Shÿam Peri

II Floor, Punja Building,
M.G.Road,
Ballalbagh,
Mangalore-575003
Ph : 91-824-2451001/5
Fax : 91-824-2451050

----------------Original Message------------------

> Hey,
> create or replace function sample(varchar,int) returns varchar as'
> declare
> data alias for $1;
> size alias for $2;
> begin
> return substr(data,(length(data)-size)+1,length(data));
> end;
> ' language 'plpgsql';
> ____________________________
> WARNING: plpgsql: ERROR during compile of sample near line 2
> ERROR: parse error at or near ";"
>
> Can any body tell me why is this error coming

Really?
I got no error and select sample('nothing',3) gave mi 'ing'
What is your postgresql version?

Regards,
Tomasz Myrta

DISCLAIMER: This message contains privileged and confidential information and is
intended only for the individual named.If you are not the intended
recipient you should not disseminate,distribute,store,print, copy or
deliver this message.Please notify the sender immediately by e-mail if
you have received this e-mail by mistake and delete this e-mail from
your system.

Attachment Content-Type Size
Untitled1 text/html 1.6 KB

Browse pgsql-sql by date

  From Date Subject
Next Message Jean-Michel Chabanne 2003-09-20 07:29:24 Re: Error with functions
Previous Message Tomasz Myrta 2003-09-20 06:58:56 Re: Error with functions