在Python中创建Postgres函数

时间:2017-01-11 23:16:30

标签: python python-2.7 postgresql psycopg2 postgresql-9.3

我正在创建尝试在Python中创建Postgres中的函数。我与postgres数据库的连接使用Psycopg 2并在其他实例中成功连接。代码:

pg_cursor.execute('CREATE OR REPLACE FUNCTION %s.fix_geometry(geometry) \
    RETURNS SETOF geometry AS\
    $BODY$\
        SELECT geom the_geom\
        FROM \
                (\
                SELECT (st_dump(st_buffer(st_snaptogrid(st_makevalid(the_geom), 0.5), 0))).geom\
                FROM (SELECT geom the_geom FROM st_dump(st_snaptogrid($1, 0.5))) a\
                ) b\
        WHERE geometrytype(geom) = \'POLYGON\' AND st_area(geom) >= 0.01;\

    $BODY$\
       LANGUAGE sql VOLATILE\
       COST 100\
       ROWS 1000;' %(schema)) #line 84

pg_connection.commit()
pg_cursor.execute('ALTER FUNCTION %s.fix_geometry(geometry) OWNER TO analysis' % (schema))
pg_connection.commit()

我收到错误:

  

第84行,在       ROWS 1000;' %(模式))
  ProgrammingError:类型几何不存在

当我在pgAdmin中运行代码时,它会成功执行。我错过了什么?

Python 2.7,Postgres 9.3

1 个答案:

答案 0 :(得分:0)

事实证明,错误只是在提供的代码段之外。 Postgre在公共模式中有几何类型,当我为这段代码定义搜索路径时,我只定义了我工作的模式;公众不包括在内。所以....

'3.0'