I have these two tables in postgresql , PATHWAY , and the vertices table that i created using pgr_createTopology, called PATHWAY_VERTICES_PGR. Everything was great until i decided to backup the database to restore it later, now that i have restored it, with the same postgres 9.3.4 x64, postgis 2.1.3 and pgrouting 2.0 versions, nothing has changed but the fact that i have restored it, and now the pgr_dijkstra stopped working, im receiving this error every time i query for pgr_dijkstra:
ERRO: Error computing path: Unknown exception caught!
********** Error **********
ERRO: Error computing path: Unknown exception caught!
SQL state: 38001
but when i search for the error code:
38001 containing_sql_not_permitted
An example of query that was completely fine until the restore:
SELECT seq, id1 AS node, id2 AS edge, cost, geom FROM pgr_dijkstra( ' SELECT r.gid as id, r.source, r.target, st_length(r.geom) as cost,r.geom FROM PATHWAY r' ,956358,734134, false, false ) as di JOIN PATHWAY pt ON di.id2 = pt.gid
I've already tried reinstalling Postgres, deleting and adding the postgis and pgrouting extensions again but the error persists. If you guys have any idea let me know, these postgresql error codes are hard to decipher