Skip to content

Commit 17ade90

Browse files
committed
using -1 as the column is not used on the user facing function
1 parent b36deea commit 17ade90

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/articulationPoints.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ PGDLLEXPORT Datum _pgr_articulationpoints(PG_FUNCTION_ARGS) {
9191
nulls[i] = false;
9292
}
9393

94-
values[0] = Int64GetDatum((int64_t)funcctx->call_cntr + 1);
94+
values[0] = Int32GetDatum(-1);
9595
values[1] = Int64GetDatum(result_tuples[funcctx->call_cntr]);
9696

9797
tuple = heap_form_tuple(tuple_desc, values, nulls);

0 commit comments

Comments
 (0)