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
Somehow martin says it can't find the schema "points" for the function function_linestring. But it exists and works for the tables. And also the function definitely exists inside of the schema.
Can you please help we with this error?
Errors:
Configured source points_table from table points.points_table with point column (POINT, SRID=4326)
Unable to configure source function_linestring because schema 'points' was not found. Possible values are:
Auto-publishing tables in schemas [points] as '{table}' sources
Discovered source points_table from table points.points_table with point column (POINT, SRID=4326)
Auto-publishing functions in schemas [points] as '{function}' sources
Unable to configure source because schema 'points' was not found. Possible values are:
Can you share the function points.convert_points_to_linestring (or better a simplified version which still produces the same result)?
Maybe this is reproducible and our test suite is missig a case ^^
CREATE OR REPLACE FUNCTION points.convert_points_to_linestring(z integer, x integer, y integer)
RETURNS TABLE (id integer, user_id integer, "time" bigint, altitude double precision, geom geometry(LineString, 4326)) AS $$
BEGIN
RETURN QUERY
SELECT id, user_id, "time", altitude, ST_MakeLine(point ORDER BY "time") AS geom
FROM points.points_table;
END;
$$ LANGUAGE plpgsql;
Somehow martin says it can't find the schema "points" for the function
function_linestring
. But it exists and works for the tables. And also the function definitely exists inside of the schema.Can you please help we with this error?
Errors:
config.yaml
The text was updated successfully, but these errors were encountered: