logo       

Type implemented in plpythonu crashes backend: msg#00017

Subject: Type implemented in plpythonu crashes backend

I'd like to implement new postgres types in a language other than C for
prototyping speed.  plpgsql won't let me create a function which takes a
cstring, and neither will pltcl.  Happily, plpythonu will, and it seems
to work fine.

However, the code below causes the backend to crash...

I'm guessing that plpython is trying to format the return value using
the appropriate registered function, which just happens to be itself.


My goal is to prototype new types, operators and gist indexes without
getting bogged down in with the guts of posgresql in C, so if it's
unreasonable to expect the below code to work, do you have any other
suggestions?


Thanks.




create or replace function pycomplex_in(cstring)
returns opaque as '

import struct
import re

p = re.compile(" *\\( *([0-9]+(\\.[0-9]+)?) *, *([0-9]+(\\.[0-9]+)?)*\\)*")
m = p.match(args[0])

if m:
    (x, y) = m.group(1, 3)
else:
    (x, y) = (0, 0)
    #plpy.error("incorrect format for pycomplex: %s" % args[0])

return struct.pack("dd", float(x), float(y))

' language plpythonu immutable strict;



create or replace function pycomplex_out(opaque)
returns cstring as '

import struct

(x, y) = struct.unpack("dd", args[0])
return "(%f, %f)", (x, y)

' language plpythonu immutable strict;


create type pycomplex (
   internallength = 16,
   input          = pycomplex_in,
   output         = pycomplex_out,
   alignment      = double
);


select pycomplex_out(pycomplex_in('(1,2)'));





---------------------------(end of broadcast)---------------------------
TIP 9: the planner will ignore your desire to choose an index scan if your
      joining column's datatypes do not match



<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
science.linguis...    culture.sf.lite...    video.mplayer.c...    yellowdog.gener...    ietf.rfc822/199...    emacs.help/2002...    redhat.release....    kernel.speakup/...    java.openejb.de...    debian.devel.gt...    xfree86.newbie/...    bug-tracking.ma...    pam/2003-05/msg...    games.devel.ope...    user-groups.lin...    music.pancham/2...    network.mq.deve...    web.html.genera...    arklinux.bugs/2...    linux.ecasound/...    qnx.openqnx.dev...    org.user-groups...    file-systems.sf...    trustix.contrib...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe