You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
Functions pgr_createVerticesTable and pgr_createtopology does not working properly in PGR 3.4.0 and 3.4.1 because of this:
DECLARE
dummyRec TEXT;
...
sql = 'SELECT * FROM '||_pgr_quote_ident(tabname)||' WHERE true'||rows_where ||' limit 1';
EXECUTE sql INTO dummyRec;
Obviously, this variable should be of type Record.
Currently this problem blocks initial checks on tables when using these two functions, because it generates exception.
AFAIR, this bug wasn't present in 3.3.x versions earlier this year.
The text was updated successfully, but these errors were encountered:
Greetings.
Problem
Functions pgr_createVerticesTable and pgr_createtopology does not working properly in PGR 3.4.0 and 3.4.1 because of this:
DECLARE
dummyRec TEXT;
...
sql = 'SELECT * FROM '||_pgr_quote_ident(tabname)||' WHERE true'||rows_where ||' limit 1';
EXECUTE sql INTO dummyRec;
Obviously, this variable should be of type Record.
Currently this problem blocks initial checks on tables when using these two functions, because it generates exception.
AFAIR, this bug wasn't present in 3.3.x versions earlier this year.
The text was updated successfully, but these errors were encountered: