Skip to content

Commit bca0e18

Browse files
committed
[components] fixyng type
1 parent 1ef823f commit bca0e18

7 files changed

Lines changed: 21 additions & 9 deletions

doc/components/pgr_biconnectedComponents.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ In particular, the algorithm implemented by Boost.Graph.
2222

2323
* Version 3.0.0
2424

25-
* Return columns change: ``n_seq`` is removed
25+
* Return columns change:
26+
27+
* ``n_seq`` is removed
28+
* ``seq`` changed type to ``BIGINT``
29+
2630
* **Official** function
2731

2832
* Version 2.5.0
@@ -102,7 +106,7 @@ Returns set of ``(seq, component, edge)``
102106
============== ========== =================================================
103107
Column Type Description
104108
============== ========== =================================================
105-
**seq** ``INT`` Sequential value starting from **1**.
109+
**seq** ``BIGINT`` Sequential value starting from **1**.
106110
**component** ``BIGINT`` Component identifier. It is equal to the minimum edge identifier in the component.
107111
**edge** ``BIGINT`` Identifier of the edge.
108112
============== ========== =================================================

doc/components/pgr_connectedComponents.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ pgr_connectedComponents
2121

2222
* Version 3.0.0
2323

24-
* Return columns change: ``n_seq`` is removed
24+
* Return columns change:
25+
26+
* ``n_seq`` is removed
27+
* ``seq`` changed type to ``BIGINT``
28+
2529
* **Official** function
2630

2731
* Version 2.5.0
@@ -101,7 +105,7 @@ Returns set of ``(seq, component, node)``
101105
============== ========== =================================================
102106
Column Type Description
103107
============== ========== =================================================
104-
**seq** ``INT`` Sequential value starting from **1**.
108+
**seq** ``BIGINT`` Sequential value starting from **1**.
105109
**component** ``BIGINT`` Component identifier. It is equal to the minimum node identifier in the component.
106110
**node** ``BIGINT`` Identifier of the vertex that belongs to **component**.
107111
============== ========== =================================================

doc/components/pgr_strongComponents.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,11 @@ pgr_strongComponents
2121

2222
* Version 3.0.0
2323

24-
* Return columns change: ``n_seq`` is removed
24+
* Return columns change:
25+
26+
* ``n_seq`` is removed
27+
* ``seq`` changed type to ``BIGINT``
28+
2529
* **Official** function
2630

2731
* Version 2.5.0

sql/components/_biconnectedComponents.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3535
CREATE OR REPLACE FUNCTION _pgr_biconnectedComponents(
3636
edges_sql TEXT,
3737

38-
OUT seq INTEGER,
38+
OUT seq BIGINT,
3939
OUT component BIGINT,
4040
OUT edge BIGINT)
4141
RETURNS SETOF RECORD AS

sql/components/_strongComponents.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3535
CREATE OR REPLACE FUNCTION _pgr_strongComponents(
3636
edges_sql TEXT,
3737

38-
OUT seq INTEGER,
38+
OUT seq BIGINT,
3939
OUT component BIGINT,
4040
OUT node BIGINT)
4141

sql/components/biconnectedComponents.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3030
CREATE OR REPLACE FUNCTION pgr_biconnectedComponents(
3131
TEXT, -- edges_sql (required)
3232

33-
OUT seq INTEGER,
33+
OUT seq BIGINT,
3434
OUT component BIGINT,
3535
OUT edge BIGINT)
3636
RETURNS SETOF RECORD AS

sql/components/strongComponents.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3030
CREATE OR REPLACE FUNCTION pgr_strongComponents(
3131
TEXT, -- edges_sql (required)
3232

33-
OUT seq INTEGER,
33+
OUT seq BIGINT,
3434
OUT component BIGINT,
3535
OUT node BIGINT)
3636
RETURNS SETOF RECORD AS

0 commit comments

Comments
 (0)