]> granicus.if.org Git - postgresql/commitdiff
Domain support in PL/Python
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 14 Aug 2009 13:12:21 +0000 (13:12 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 14 Aug 2009 13:12:21 +0000 (13:12 +0000)
When examining what Python type to convert a PostgreSQL type to on input,
look at the base type of the input type, otherwise all domains end up
defaulting to string.

src/pl/plpython/plpython.c

index c52e67e6626e3efbbadf892737dbce85a47cec33..ee94b637fe7cdd343d957e0b9cf0bebfabed405b 100644 (file)
@@ -1,7 +1,7 @@
 /**********************************************************************
  * plpython.c - python as a procedural language for PostgreSQL
  *
- *     $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.124 2009/08/13 20:50:05 petere Exp $
+ *     $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.125 2009/08/14 13:12:21 petere Exp $
  *
  *********************************************************************
  */
@@ -1641,7 +1641,7 @@ PLy_input_datum_func2(PLyDatumToOb *arg, Oid typeOid, HeapTuple typeTup)
        arg->typbyval = typeStruct->typbyval;
 
        /* Determine which kind of Python object we will convert to */
-       switch (typeOid)
+       switch (getBaseType(typeOid))
        {
                case BOOLOID:
                        arg->func = PLyBool_FromString;