Re: [postgis-users] Error with ST functions

2015-11-19 Thread Sandro Santilli
On Thu, Nov 19, 2015 at 06:25:46PM +0100, Lorenzo Bottaccioli wrote:
> grep -i st_bandisnodata rtpostgis.sql
> CREATE OR REPLACE FUNCTION st_bandisnodata(rast raster, band integer
> DEFAULT 1, forceChecking boolean DEFAULT FALSE)
> CREATE OR REPLACE FUNCTION st_bandisnodata(rast raster, forceChecking
> boolean)
> AS $$ SELECT st_bandisnodata($1, 1, $2) $$

Right, so someone tempered with the db.
There might be more things missing.

One way to check what else is missing would be:

 BEGIN;
 CREATE EXTENSION postgis VERSION '2.1.2' FROM 'unpackaged';
 -- you'd get an error here, if anything is missing
 ROLLBACK; -- we're just checking, right?

Let me know if you need help with fixing things.

--strk;

  ()   Free GIS & Flash consultant/developer
  /\   http://strk.keybit.net/services.html
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Lorenzo Bottaccioli
grep -i st_bandisnodata rtpostgis.sql
CREATE OR REPLACE FUNCTION st_bandisnodata(rast raster, band integer
DEFAULT 1, forceChecking boolean DEFAULT FALSE)
CREATE OR REPLACE FUNCTION st_bandisnodata(rast raster, forceChecking
boolean)
AS $$ SELECT st_bandisnodata($1, 1, $2) $$


2015-11-19 18:23 GMT+01:00 Sandro Santilli :

> On Thu, Nov 19, 2015 at 06:10:52PM +0100, Lorenzo Bottaccioli wrote:
> > Postgis installed by ubuntu repository, then
> >
> > createdb mydb
> > psql -d mydb -f postgis_comments.sql
> > psql -d mydb -f spatial_ref_sys.sql
> > psql -d mydb -f rtpostgis.sql
> > psql -d mydb -f raster_comments.sql
> > psql -d mydb -f topology.sql
> > psql -d mydb -f topology_comments.sql
>
> See if the sourced file did contain that function:
>
>  grep -i st_bandisnodata rtpostgis.sql
>
> You should see this line:
>
>  CREATE OR REPLACE FUNCTION st_bandisnodata(rast raster, band integer
> DEFAULT 1, forceChecking boolean DEFAULT FALSE)
>
> If not, it'd be a broken package.
> If you find it, someone must have removed that function later.
> It should be possible to get it back by:
>
>  psql -d mydb -f rtpostgis_upgrade_21_minor.sql
>
> --strk;
>
>   ()   Free GIS & Flash consultant/developer
>   /\   http://strk.keybit.net/services.html
>
>
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Sandro Santilli
On Thu, Nov 19, 2015 at 06:10:52PM +0100, Lorenzo Bottaccioli wrote:
> Postgis installed by ubuntu repository, then
> 
> createdb mydb
> psql -d mydb -f postgis_comments.sql
> psql -d mydb -f spatial_ref_sys.sql
> psql -d mydb -f rtpostgis.sql
> psql -d mydb -f raster_comments.sql
> psql -d mydb -f topology.sql
> psql -d mydb -f topology_comments.sql

See if the sourced file did contain that function:

 grep -i st_bandisnodata rtpostgis.sql

You should see this line:

 CREATE OR REPLACE FUNCTION st_bandisnodata(rast raster, band integer DEFAULT 
1, forceChecking boolean DEFAULT FALSE)

If not, it'd be a broken package.
If you find it, someone must have removed that function later.
It should be possible to get it back by:

 psql -d mydb -f rtpostgis_upgrade_21_minor.sql

--strk;

  ()   Free GIS & Flash consultant/developer
  /\   http://strk.keybit.net/services.html

___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Lorenzo Bottaccioli
Postgis installed by ubuntu repository, then

createdb mydb
psql -d mydb -f postgis_comments.sql
psql -d mydb -f spatial_ref_sys.sql
psql -d mydb -f rtpostgis.sql
psql -d mydb -f raster_comments.sql
psql -d mydb -f topology.sql
psql -d mydb -f topology_comments.sql



2015-11-19 18:03 GMT+01:00 Sandro Santilli :

> On Thu, Nov 19, 2015 at 05:53:47PM +0100, Lorenzo Bottaccioli wrote:
> > SELECT extname, extversion from pg_extension;
> >  extname | extversion
> > -+
> >  plpgsql | 1.0
> > (1 row)
>
> [...]
>
> > POSTGIS="2.1.2 r12389" GEOS="3.4.2-CAPI-1.8.2 r3921" PROJ="Rel.4.8.0, 6
> March 2012" GDAL="GDAL 1.10.1, released 2013/08/26" LIBXML="2.9.1"
> LIBJSON="UNKNOWN" RASTER
>
> So not via extension.
>
> Was this database upgraded from a previous version of PostGIS or
> installed new ? Did you build PostGIS yourself or installed from
> packages ?
>
> The point is that the install is broken
> (either by how you got there or by subsequent tampering).
>
> --strk;
> ___
> postgis-users mailing list
> postgis-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/postgis-users
>
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Sandro Santilli
On Thu, Nov 19, 2015 at 05:53:47PM +0100, Lorenzo Bottaccioli wrote:
> SELECT extname, extversion from pg_extension;
>  extname | extversion
> -+
>  plpgsql | 1.0
> (1 row)

[...]

> POSTGIS="2.1.2 r12389" GEOS="3.4.2-CAPI-1.8.2 r3921" PROJ="Rel.4.8.0, 6 March 
> 2012" GDAL="GDAL 1.10.1, released 2013/08/26" LIBXML="2.9.1" 
> LIBJSON="UNKNOWN" RASTER

So not via extension.

Was this database upgraded from a previous version of PostGIS or
installed new ? Did you build PostGIS yourself or installed from
packages ?

The point is that the install is broken
(either by how you got there or by subsequent tampering).

--strk;
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Lorenzo Bottaccioli
SELECT extname, extversion from pg_extension;
 extname | extversion
-+
 plpgsql | 1.0
(1 row)


2015-11-19 17:40 GMT+01:00 Sandro Santilli :

> On Thu, Nov 19, 2015 at 02:00:05PM +0100, Lorenzo Bottaccioli wrote:
> > >
> > > How about these:
> > >
> > >  SELECT
> > >   n.nspname, p.proname, array_agg(t.typname)
> > >  FROM
> > >   pg_proc p, pg_namespace n, pg_type t
> > >  WHERE p.proname = 'st_bandisnodata'
> > >AND n.oid = p.pronamespace
> > >AND t.oid = any (p.proargtypes)
> > >  GROUP BY
> > >n.nspname, p.proname, p.oid;
> > >
> >
> > response:
> >  nspname | proname |   array_agg
> > -+-+---
> >  public  | st_bandisnodata | {bool,raster}
> > (1 row)
>
> This isn't the answer you'd get with a fresn install of 2.1.2.
> This is:
>
>nspname | proname | array_agg
>   -+-+
>public  | st_bandisnodata | {bool,raster}
>public  | st_bandisnodata | {bool,int4,raster}
>
> You reported postgis_full_version() response of:
>
>  POSTGIS="2.1.2 r12389" GEOS="3.4.2-CAPI-1.8.2 r3921" PROJ="Rel. 4.8.0, 6
> March 2012" GDAL="GDAL 1.10.1, released 2013/08/26" LIBXML="2.9.1"
> LIBJSON="UNKNOWN" RASTER
>
> But didn't say how you enabled it.
>
> SELECT extname, extversion from pg_extension;
>
> --strk;
> ___
> postgis-users mailing list
> postgis-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/postgis-users
>
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Sandro Santilli
On Thu, Nov 19, 2015 at 02:00:05PM +0100, Lorenzo Bottaccioli wrote:
> >
> > How about these:
> >
> >  SELECT
> >   n.nspname, p.proname, array_agg(t.typname)
> >  FROM
> >   pg_proc p, pg_namespace n, pg_type t
> >  WHERE p.proname = 'st_bandisnodata'
> >AND n.oid = p.pronamespace
> >AND t.oid = any (p.proargtypes)
> >  GROUP BY
> >n.nspname, p.proname, p.oid;
> >
> 
> response:
>  nspname | proname |   array_agg
> -+-+---
>  public  | st_bandisnodata | {bool,raster}
> (1 row)

This isn't the answer you'd get with a fresn install of 2.1.2.
This is:

   nspname | proname | array_agg
  -+-+
   public  | st_bandisnodata | {bool,raster}
   public  | st_bandisnodata | {bool,int4,raster}

You reported postgis_full_version() response of:

 POSTGIS="2.1.2 r12389" GEOS="3.4.2-CAPI-1.8.2 r3921" PROJ="Rel. 4.8.0, 6 March 
2012" GDAL="GDAL 1.10.1, released 2013/08/26" LIBXML="2.9.1" LIBJSON="UNKNOWN" 
RASTER

But didn't say how you enabled it.

SELECT extname, extversion from pg_extension;

--strk;
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

[postgis-users] pgpool replication mode (master-master)

2015-11-19 Thread Jose Baez
Is anyone using Pgpool in replication mode (master-master) with Postgis ?

There are not any Pgpool threads in Postgis mailing list for years.

When I have got 2 synchronized Psql nodes working together with Pgpool,
from time to time there is a Geom query which Pgpool rejects because Psql
nodes returned different results, so it degenerates one of the backends.

Is anyone working with this scenario?


Thanks.
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Lorenzo Bottaccioli
>
> How about these:
>
>  SELECT
>   n.nspname, p.proname, array_agg(t.typname)
>  FROM
>   pg_proc p, pg_namespace n, pg_type t
>  WHERE p.proname = 'st_bandisnodata'
>AND n.oid = p.pronamespace
>AND t.oid = any (p.proargtypes)
>  GROUP BY
>n.nspname, p.proname, p.oid;
>

response:
 nspname | proname |   array_agg
-+-+---
 public  | st_bandisnodata | {bool,raster}
(1 row)



>  SHOW search_path;


  search_path

 "$user",public
(1 row)

regards
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Sandro Santilli
On Thu, Nov 19, 2015 at 11:33:12AM +0100, Lorenzo Bottaccioli wrote:

> *ERROR:  function st_bandisnodata(raster) does not exist*

[..]

> POSTGIS="2.1.2 r12389" GEOS="3.4.2-CAPI-1.8.2 r3921" PROJ="Rel. 4.8.0, 6
> March 2012" GDAL="GDAL 1.10.1, released 2013/08/26" LIBXML="2.9.1"
> LIBJSON="UNKNOWN" RASTER

How about these:

 SELECT
  n.nspname, p.proname, array_agg(t.typname)
 FROM
  pg_proc p, pg_namespace n, pg_type t
 WHERE p.proname = 'st_bandisnodata'
   AND n.oid = p.pronamespace
   AND t.oid = any (p.proargtypes)
 GROUP BY
   n.nspname, p.proname, p.oid;

 SHOW search_path;

--strk; 

  ()   Free GIS & Flash consultant/developer
  /\   http://strk.keybit.net/services.html
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Lorenzo Bottaccioli
Hi,

(how) did you enable PostGIS for the database you're using ?
SELECT postgis_full_version();

--strk;

the reuslt of the query is:

POSTGIS="2.1.2 r12389" GEOS="3.4.2-CAPI-1.8.2 r3921" PROJ="Rel. 4.8.0, 6
March 2012" GDAL="GDAL 1.10.1, released 2013/08/26" LIBXML="2.9.1"
LIBJSON="UNKNOWN" RASTER


As an addition, you need to have the public schema in your search path, at
> least.
> It is the case by default, unless you tweeked it.
>
> SET search_path TO 'public' ;
>

I'have tried this but there is no difference.

Best

Lorenzo
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users

Re: [postgis-users] Error with ST functions

2015-11-19 Thread Rémi Cura
As an addition, you need to have the public schema in your search path, at
least.
It is the case by default, unless you tweeked it.

SET search_path TO 'public' ;

Cheers,
Rémi-C

2015-11-18 19:59 GMT+01:00 Sandro Santilli :

> On Wed, Nov 18, 2015 at 07:54:19PM +0100, Lorenzo Bottaccioli wrote:
>
> > *ERROR:  function st_bandisnodata(raster) does not exist*
> > *LINE 1: SELECT ST_BandIsNoData(rast) from mytable;*
> > *   ^*
> > *HINT:  No function matches the given name and argument types. You might
> > need to add explicit type casts.*
> >
> > Any suggestion how to solve this?
> >
> > I get the same error with many other functions.
>
> (how) did you enable PostGIS for the database you're using ?
> SELECT postgis_full_version();
>
> --strk;
> ___
> postgis-users mailing list
> postgis-users@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/postgis-users
___
postgis-users mailing list
postgis-users@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/postgis-users