Skip to content

Commit

Permalink
[docqueries] adjusting results
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Sep 12, 2023
1 parent 19bdc47 commit 3547df2
Show file tree
Hide file tree
Showing 8 changed files with 55 additions and 55 deletions.
28 changes: 14 additions & 14 deletions docqueries/src/migration.result
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ SELECT * FROM pgr_trsp(
FROM edges WHERE id != 16$$,
15, 16,
true, true);
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-----+-----+------
0 | 15 | 3 | 1
Expand Down Expand Up @@ -114,7 +114,7 @@ SELECT * FROM pgr_trsp(
true, true,
$$SELECT to_cost, target_id::INTEGER, via_path
FROM old_restrictions$$);
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-----+-----+------
0 | 15 | 3 | 1
Expand Down Expand Up @@ -173,7 +173,7 @@ SELECT * FROM pgr_trsp(
FROM edges$$,
6, 0.3, 12, 0.6,
true, true);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-----+-----+------
0 | -1 | 6 | 0.7
Expand Down Expand Up @@ -219,7 +219,7 @@ SELECT * FROM pgr_trsp(
$$SELECT id::INTEGER, source::INTEGER, target::INTEGER, cost, reverse_cost FROM edges$$,
6, 0.3, 12, 0.6, true, true,
$$SELECT to_cost, target_id::INTEGER, via_path FROM old_restrictions$$);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-----+-----+------
0 | -1 | 6 | 0.7
Expand Down Expand Up @@ -285,7 +285,7 @@ SELECT * FROM pgr_trspViaVertices(
$$SELECT id::INTEGER, source::INTEGER, target::INTEGER, cost, reverse_cost FROM edges$$,
ARRAY[6, 3, 6],
true, true);
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) is been deprecated
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | 6 | 4 | 1
Expand Down Expand Up @@ -332,7 +332,7 @@ SELECT * FROM pgr_trspViaVertices(
ARRAY[6, 3, 6],
true, true,
$$SELECT to_cost, target_id::INTEGER, via_path FROM old_restrictions$$);
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) is been deprecated
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | 6 | 4 | 1
Expand Down Expand Up @@ -408,7 +408,7 @@ SELECT * FROM pgr_trspViaEdges(
$$SELECT id::INTEGER, source::INTEGER, target::INTEGER, cost, reverse_cost FROM edges$$,
ARRAY[6, 12, 4], ARRAY[0.3, 0.6, 0.7],
true, true);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 6 | 0.7
Expand Down Expand Up @@ -478,9 +478,9 @@ SELECT * FROM pgr_trspViaEdges(
ARRAY[6, 12, 4], ARRAY[0.3, 0.6, 0.7],
true, true,
$$SELECT to_cost, target_id::INTEGER, via_path FROM old_restrictions$$);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 6 | 0.7
Expand Down Expand Up @@ -557,7 +557,7 @@ SELECT * FROM pgr_maxCardinalityMatch(
$$SELECT id, source, target, cost AS going, reverse_cost AS coming FROM edges$$,
directed => true
);
WARNING: pgr_maxCardinalityMatch(text,boolean) deprecated on v3.4.0
WARNING: pgr_maxCardinalityMatch(text,boolean) deprecated signature on v3.4.0
seq | edge | source | target
-----+------+--------+--------
1 | 1 | 5 | 6
Expand Down Expand Up @@ -790,7 +790,7 @@ SELECT * FROM pgr_withPointsDD(
$$SELECT id, source, target, cost, reverse_cost FROM edges ORDER BY id$$,
$$SELECT pid, edge_id, fraction, side from pointsOfInterest$$,
-1, 3.3);
WARNING: pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean) is been deprecated
WARNING: pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean) deprecated signature on 3.6.0
seq | node | edge | cost | agg_cost
-----+------+------+------+----------
1 | -1 | -1 | 0 | 0
Expand All @@ -809,7 +809,7 @@ SELECT * FROM pgr_withPointsDD(
$$SELECT id, source, target, cost, reverse_cost FROM edges ORDER BY id$$,
$$SELECT pid, edge_id, fraction, side from pointsOfInterest$$,
-1, 3.3, driving_side => 'r');
WARNING: pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean) is been deprecated
WARNING: pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean) deprecated signature on 3.6.0
seq | node | edge | cost | agg_cost
-----+------+------+------+----------
1 | -1 | -1 | 0 | 0
Expand All @@ -823,7 +823,7 @@ SELECT * FROM pgr_withPointsDD(
$$SELECT id, source, target, cost, reverse_cost FROM edges ORDER BY id$$,
$$SELECT pid, edge_id, fraction, side from pointsOfInterest$$,
-1, 3.3, directed => true, driving_side => 'b');
WARNING: pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean) is been deprecated
WARNING: pgr_withpointsdd(text,text,bigint,double precision,boolean,character,boolean) deprecated signature on 3.6.0
seq | node | edge | cost | agg_cost
-----+------+------+------+----------
1 | -1 | -1 | 0 | 0
Expand Down
12 changes: 6 additions & 6 deletions docqueries/trsp/four_edges.result
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SELECT * FROM pgr_trsp(
719, 0,
718, 0,
true, true, NULL);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-------+-----+------------
0 | 52163 | 717 | 977.000001
Expand All @@ -51,7 +51,7 @@ SELECT * FROM pgr_trsp(
(SELECT source::int FROM four_edges WHERE id = 719),
(SELECT source::int FROM four_edges WHERE id = 718),
true, true, NULL);
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-------+-----+------
0 | 52163 | 717 | 977
Expand All @@ -66,7 +66,7 @@ SELECT * FROM pgr_trsp(
719, 0,
718, 0,
true, true, NULL);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-------+-----+------------
0 | 52163 | 717 | 977.000001
Expand Down Expand Up @@ -110,7 +110,7 @@ SELECT * FROM pgr_trsp(
719, 0.5,
718, 0,
true, true, NULL);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-------+-----+------------
0 | -1 | 719 | 89.7000005
Expand Down Expand Up @@ -157,7 +157,7 @@ SELECT * FROM pgr_trsp(
719, 0,
718, 0.5,
true, true, NULL);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-------+-----+-------------
0 | 52163 | 717 | 977.000001
Expand Down Expand Up @@ -202,7 +202,7 @@ SELECT * FROM pgr_trsp(
719, 0.5,
718, 0.5,
true, true, NULL);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-------+-----+-------------
0 | -1 | 719 | 89.7000005
Expand Down
2 changes: 1 addition & 1 deletion docqueries/trsp/issue693.result
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ SELECT pgr_trsp(
'SELECT gid as id, source::int4, target::int4, length::float8 as cost, length::float8 as reverse_cost FROM routing',
1, 0.1, 1, 0.9, false, true
);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
pgr_trsp
---------------
(0,-1,1,1000)
Expand Down
10 changes: 5 additions & 5 deletions docqueries/trsp/issue704.result
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM pgr_trsp(
true, /* has_reverse_cost? */
null /* include the turn restrictions */
) PG ;
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | node | edge | cost
-----+--------+--------+----------
0 | 408918 | 582877 | 229.0450
Expand All @@ -38,7 +38,7 @@ FROM pgr_trsp(
true, /* has_reverse_cost? */
null /* include the turn restrictions */
) PG ;
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | node | edge | cost
-----+------+--------+----------
0 | -1 | 582877 | 229.0450
Expand All @@ -56,7 +56,7 @@ FROM pgr_trsp(
true, /* has_reverse_cost? */
$$SELECT 100::float AS to_cost, 25::INTEGER AS target_id, '32, 33'::TEXT AS via_path$$
) PG ;
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | node | edge | cost
-----+------+--------+----------
0 | -1 | 582877 | 229.0450
Expand All @@ -73,7 +73,7 @@ FROM pgr_trsp(
true, /* has_reverse_cost? */
$$SELECT 100::float AS to_cost, 25::INTEGER AS target_id, '32, 33'::TEXT AS via_path$$
) PG ;
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | node | edge | cost
-----+------+--------+----------
0 | -1 | 582877 | 229.0450
Expand All @@ -89,7 +89,7 @@ FROM pgr_trsp(
true, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | node | edge | cost
-----+--------+--------+----------
0 | 408918 | 582877 | 458.0900
Expand Down
32 changes: 16 additions & 16 deletions docqueries/trsp/issue717.result
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SELECT * FROM pgr_trspViaVertices(
true, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) is been deprecated
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | 6 | 4 | 1
Expand All @@ -50,7 +50,7 @@ SELECT * FROM pgr_trspViaEdges(
true, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 4 | 0.5
Expand All @@ -71,7 +71,7 @@ SELECT * FROM pgr_trspViaEdges(
true, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand All @@ -96,7 +96,7 @@ SELECT * FROM pgr_trspViaEdges(
true, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand All @@ -120,7 +120,7 @@ SELECT * FROM pgr_trspViaVertices(
true, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) is been deprecated
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
(0 rows)
Expand All @@ -132,7 +132,7 @@ SELECT * FROM pgr_trspViaEdges(
true, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 2 | -2 | 6 | 0.5
Expand All @@ -149,7 +149,7 @@ SELECT * FROM pgr_trspViaEdges(
true, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand All @@ -166,7 +166,7 @@ SELECT * FROM pgr_trspViaEdges(
true, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand All @@ -182,7 +182,7 @@ SELECT * FROM pgr_trspViaVertices(
false, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) is been deprecated
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | 6 | 4 | 1
Expand All @@ -202,7 +202,7 @@ SELECT * FROM pgr_trspViaEdges(
false, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 4 | 0.5
Expand All @@ -223,7 +223,7 @@ SELECT * FROM pgr_trspViaEdges(
false, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand All @@ -245,7 +245,7 @@ SELECT * FROM pgr_trspViaEdges(
false, /* directed graph? */
true /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand All @@ -266,7 +266,7 @@ SELECT * FROM pgr_trspViaVertices(
false, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) is been deprecated
WARNING: pgr_trspViaVertices(text,anyarray,boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | 6 | 4 | 1
Expand All @@ -286,7 +286,7 @@ SELECT * FROM pgr_trspViaEdges(
false, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 4 | 0.5
Expand All @@ -307,7 +307,7 @@ SELECT * FROM pgr_trspViaEdges(
false, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand All @@ -329,7 +329,7 @@ SELECT * FROM pgr_trspViaEdges(
false, /* directed graph? */
false /* has_reverse_cost? */
);
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated on v3.4.0
WARNING: pgr_trspViaEdges(text,integer[],float[],boolean,boolean,text) deprecated function on v3.4.0
seq | id1 | id2 | id3 | cost
-----+-----+-----+-----+------
1 | 1 | -1 | 1 | 0.5
Expand Down
2 changes: 1 addition & 1 deletion docqueries/trsp/trsp-any-02.result
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ select * from pgr_trsp(
true, /* has_reverse_cost? */
/* include the turn restrictions */
'select to_cost, teid as target_id, feid||coalesce('',''||via,'''') as via_path from restrictions2');
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,float,integer,float,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-----+-----+--------
0 | -1 | 1 | 0.5005
Expand Down
4 changes: 2 additions & 2 deletions docqueries/trsp/trsp-renumber.result
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SELECT * FROM pgr_trsp(
'SELECT id::INTEGER, (source+10)::INTEGER AS source, (target+10)::INTEGER AS target, cost::FLOAT FROM edges',
11, 27, false, false
);
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-----+-----+------
0 | 11 | 6 | 1
Expand Down Expand Up @@ -57,7 +57,7 @@ SELECT * FROM pgr_trsp(
'SELECT to_cost, target_id::int4, via_path
FROM old_restrictions'
);
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated on v3.4.0
WARNING: pgr_trsp(text,integer,integer,boolean,boolean) deprecated signature on v3.4.0
seq | id1 | id2 | cost
-----+-----+-----+------
0 | 6 | 4 | 1
Expand Down
Loading

0 comments on commit 3547df2

Please sign in to comment.