Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pumpup to 3.4.2 #2434

Merged
merged 31 commits into from
Nov 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ea7b90f
[build] pump up to 3.4.2
cvvergara Nov 23, 2022
b9742c6
Update locale: commit ea7b90f8f
github-actions[bot] Nov 23, 2022
c946c96
[linter] using cpplint/cpplint has python3 support
cvvergara Nov 23, 2022
84348a6
[allpairs] fixing lint errors from new linter
cvvergara Nov 23, 2022
2b52a0f
[astar] fixing lint errors from new linter
cvvergara Nov 23, 2022
3177054
[bellman_ford] fixing lint errors from new linter
cvvergara Nov 23, 2022
1e1b1db
[breadthFirstSearch] fixing lint errors from new linter
cvvergara Nov 23, 2022
c683b99
[circuits] fixing lint errors from new linter
cvvergara Nov 23, 2022
97bf6e7
[coloring] fixing lint errors from new linter
cvvergara Nov 23, 2022
f7f627c
[components] fixing lint errors from new linter
cvvergara Nov 23, 2022
4bee7f1
[contraction] fixing lint errors from new linter
cvvergara Nov 23, 2022
b4e712d
[cpp_common] fixing lint errors from new linter
cvvergara Nov 23, 2022
62739ab
[dagShortestPath] fixing lint errors from new linter
cvvergara Nov 23, 2022
0ddc402
[dijkstra] fixing lint errors from new linter
cvvergara Nov 23, 2022
6009c11
[dominator] fixing lint errors from new linter
cvvergara Nov 23, 2022
9e89429
[max_flow] fixing lint errors from new linter
cvvergara Nov 23, 2022
c022693
[mincut] fixing lint errors from new linter
cvvergara Nov 23, 2022
5e1e88e
[ordering] fixing lint errors from new linter
cvvergara Nov 23, 2022
6eb2b38
[planar] fixing lint errors from new linter
cvvergara Nov 23, 2022
f6b3e9f
[spanningTree] fixing lint errors from new linter
cvvergara Nov 23, 2022
5700513
[topologicalSort] fixing lint errors from new linter
cvvergara Nov 23, 2022
74d1cd7
[transitiveClosure] fixing lint errors from new linter
cvvergara Nov 23, 2022
8118327
[traversal] fixing lint errors from new linter
cvvergara Nov 23, 2022
d9aec0c
[tsp] fixing lint errors from new linter
cvvergara Nov 23, 2022
71c4d3f
[visitors] fixing lint errors from new linter
cvvergara Nov 23, 2022
f3bd74b
[alpha_shape] fixing lint errors from new linter
cvvergara Nov 23, 2022
957b9c0
[common] fixing lint errors from new linter
cvvergara Nov 23, 2022
6edaeda
[lint][shell] fixing new catched errors
cvvergara Nov 23, 2022
0b3d56b
[license] ignoring gif files for license
cvvergara Nov 23, 2022
906f6e4
[license][check] automatic license check on pgtap files
cvvergara Nov 23, 2022
b165ad8
[docqueries][license][incubation] fixing license for automatic check
cvvergara Nov 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/check-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ jobs:
- name: Install Requirements
uses: actions/checkout@v3
with:
repository: 'google/styleguide'
ref: "gh-pages"
path: "code_linter/styleguide"
repository: 'cpplint/cpplint'
ref: "develop"
path: "code_linter/cpplint"
- name: Run linter
run: |
ls code_linter
bash ./tools/scripts/code_checker.sh
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
old_pgr: [3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]
old_pgr: [3.4.1, 3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
pushd "${DIR}/tools/testers" > /dev/null || exit 1
sudo -u postgres bash setup_db.sh 5432 ___pgr___test___ postgres "${{ matrix.old_pgr }}"
sudo -u postgres psql -p 5432 -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
sudo -u postgres psql -p 5432 -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.4.1';"
sudo -u postgres psql -p 5432 -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.4.2';"
sudo -u postgres psql -p 5432 -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
sudo -u postgres pg_prove -Q -f --normalize --directives --recurse -d ___pgr___test___ "../../pgtap"

Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include(pgr/BuildType)
#---------------------------------------------
#---------------------------------------------

project(PGROUTING VERSION 3.4.1
project(PGROUTING VERSION 3.4.2
LANGUAGES C CXX )
set(PROJECT_VERSION_DEV "")
string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)
Expand All @@ -33,6 +33,7 @@ string(TIMESTAMP COMPILATION_DATE "%Y/%m/%d" UTC)

set(MINORS 3.4 3.3 3.2 3.1 3.0 2.6)
set(OLD_SIGNATURES
3.4.1
3.4.0
3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 3.3.0
3.2.2 3.2.1 3.2.0
Expand Down
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
pgRouting 3.4.2 Release Notes
-------------------------------------------------------------------------------

No Changes Yet

pgRouting 3.4.1 Release Notes
-------------------------------------------------------------------------------

Expand Down
5 changes: 2 additions & 3 deletions ci/bessie/regress.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@
#--
#
# export BRANCH=develop
export PGROUTING_VER=$BRANCH

#-------------------------
# File used in Jenkins setup
#-------------------------
export PATH=${PATH}:/usr/local::/usr/local/lib::/usr/local/bin
export PATH="${PATH}":/usr/local::/usr/local/lib::/usr/local/bin
echo "$PATH"
export PGUSER=postgres
export PGROUTING_VER=$BRANCH
export PGROUTING_VER="${BRANCH}"

rm -rf "${WORKSPACE}/build${BRANCH}"
mkdir "${WORKSPACE}/build${BRANCH}"
Expand Down
5 changes: 2 additions & 3 deletions ci/bessie32/regress.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@
#--
#
# export BRANCH=develop
export PGROUTING_VER=$BRANCH

#-------------------------
# File used in Jenkins setup
#-------------------------
export PATH=${PATH}:/usr/local::/usr/local/lib::/usr/local/bin
export PATH="${PATH}":/usr/local::/usr/local/lib::/usr/local/bin
echo "$PATH"
export PGUSER=postgres
export PGROUTING_VER=$BRANCH
export PGROUTING_VER="${BRANCH}"

rm -rf "${WORKSPACE}/build${BRANCH}"
mkdir "${WORKSPACE}/build${BRANCH}"
Expand Down
6 changes: 6 additions & 0 deletions doc/src/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ To see the full list of changes check the list of `Git commits




pgRouting 3.4.2 Release Notes
-------------------------------------------------------------------------------

No Changes Yet

pgRouting 3.4.1 Release Notes
-------------------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions docqueries/allpairs/doc-floydWarshall.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_floydWarshall(
Expand Down
1 change: 1 addition & 0 deletions docqueries/allpairs/doc-johnson.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_johnson(
Expand Down
1 change: 1 addition & 0 deletions docqueries/alpha_shape/doc-pgr_alphashape.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT ST_Area(pgr_alphaShape((SELECT ST_Collect(geom)
Expand Down
1 change: 1 addition & 0 deletions docqueries/astar/doc-aStarCost.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_aStarCost(
Expand Down
1 change: 1 addition & 0 deletions docqueries/astar/doc-aStarCostMatrix.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_aStarCostMatrix(
Expand Down
1 change: 1 addition & 0 deletions docqueries/astar/doc-astar.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_aStar(
Expand Down
1 change: 1 addition & 0 deletions docqueries/bdAstar/doc-pgr_bdAstar.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_bdAstar(
Expand Down
1 change: 1 addition & 0 deletions docqueries/bdAstar/doc-pgr_bdAstarCost.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_bdAstarCost(
Expand Down
1 change: 1 addition & 0 deletions docqueries/bdAstar/doc-pgr_bdAstarCostMatrix.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_bdAstarCostMatrix(
Expand Down
1 change: 1 addition & 0 deletions docqueries/bdDijkstra/bdDijkstra-large.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/*PGR-GNU*****************************************************************

Expand Down
1 change: 1 addition & 0 deletions docqueries/bdDijkstra/doc-pgr_bdDijkstra.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_bdDijkstra(
Expand Down
1 change: 1 addition & 0 deletions docqueries/bdDijkstra/doc-pgr_bdDijkstraCost.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_bdDijkstraCost(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_bdDijkstraCostMatrix(
Expand Down
2 changes: 2 additions & 0 deletions docqueries/bdDijkstra/large.data
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/

drop table if exists bdd_ways cascade;
create table bdd_ways (
Expand Down
1 change: 1 addition & 0 deletions docqueries/bellman_ford/doc-pgr_bellmanFord.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_bellmanFord(
Expand Down
1 change: 1 addition & 0 deletions docqueries/bellman_ford/doc-pgr_edwardMoore.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_edwardMoore(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_binaryBreadthFirstSearch(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_breadthFirstSearch(
Expand Down
1 change: 1 addition & 0 deletions docqueries/chinese/doc-pgr_chinesePostman.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/

/* -- q1 */
Expand Down
1 change: 1 addition & 0 deletions docqueries/chinese/doc-pgr_chinesePostmanCost.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/

/* -- q1 */
Expand Down
1 change: 1 addition & 0 deletions docqueries/circuits/hawickCircuits.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_hawickCircuits(
Expand Down
1 change: 1 addition & 0 deletions docqueries/coloring/doc-bipartite.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* --q1 */
SELECT * FROM pgr_bipartite(
Expand Down
1 change: 1 addition & 0 deletions docqueries/coloring/doc-edgeColoring.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_edgeColoring(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_sequentialVertexColoring(
Expand Down
1 change: 1 addition & 0 deletions docqueries/common/versionless-any-01.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/*PGR-GNU*****************************************************************

Expand Down
1 change: 1 addition & 0 deletions docqueries/components/doc-pgr_articulationPoints.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_articulationPoints(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_biconnectedComponents(
Expand Down
1 change: 1 addition & 0 deletions docqueries/components/doc-pgr_bridges.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_bridges(
Expand Down
1 change: 1 addition & 0 deletions docqueries/components/doc-pgr_connectedComponents.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_connectedComponents(
Expand Down
1 change: 1 addition & 0 deletions docqueries/components/doc-pgr_makeConnected.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_makeConnected(
Expand Down
1 change: 1 addition & 0 deletions docqueries/components/doc-pgr_strongComponents.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_strongComponents(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/

SELECT plan(4);
Expand Down
1 change: 1 addition & 0 deletions docqueries/contraction/doc-contraction-family.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/

/* -- q00 */
Expand Down
1 change: 1 addition & 0 deletions docqueries/contraction/doc-pgr_contraction.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_contraction(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_dagShortestPath(
Expand Down
1 change: 1 addition & 0 deletions docqueries/dijkstra/doc-pgr_dijkstra.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_Dijkstra(
Expand Down
1 change: 1 addition & 0 deletions docqueries/dijkstra/doc-pgr_dijkstraCost.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_dijkstraCost(
Expand Down
1 change: 1 addition & 0 deletions docqueries/dijkstra/doc-pgr_dijkstraCostMatrix.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_dijkstraCostMatrix(
Expand Down
1 change: 1 addition & 0 deletions docqueries/dijkstra/doc-pgr_dijkstraNear.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_dijkstraNear(
Expand Down
1 change: 1 addition & 0 deletions docqueries/dijkstra/doc-pgr_dijkstraNearCost.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_dijkstraNearCost(
Expand Down
1 change: 1 addition & 0 deletions docqueries/dijkstra/doc-pgr_dijkstraVia.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q01 */
SELECT * FROM pgr_dijkstraVia(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* --q1 */
SELECT * FROM pgr_lengauertarjandominatortree(
Expand Down
1 change: 1 addition & 0 deletions docqueries/driving_distance/dijksraDD-issue729.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
-- TODO move to pgtap

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* --q5 */
SELECT * FROM pgr_drivingDistance(
Expand Down
1 change: 1 addition & 0 deletions docqueries/ksp/doc-ksp.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* --q1 */
SELECT * FROM pgr_KSP(
Expand Down
1 change: 1 addition & 0 deletions docqueries/ksp/doc-pgr_turnRestrictedPath.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_turnRestrictedPath(
Expand Down
1 change: 1 addition & 0 deletions docqueries/lineGraph/doc-pgr_lineGraph.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_lineGraph(
Expand Down
1 change: 1 addition & 0 deletions docqueries/lineGraph/doc-pgr_lineGraphFull.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
DROP TABLE IF EXISTS linegraph_edges;
DROP TABLE IF EXISTS vertex_map;
Expand Down
1 change: 1 addition & 0 deletions docqueries/lineGraph/pgtap_design.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
-- TODO move to pgtap

Expand Down
1 change: 1 addition & 0 deletions docqueries/lineGraph/pgtap_design_lineGraphFull.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
UPDATE edges SET id = id * 100, source = 1000 * source, target = 1000 * target;
UPDATE vertices SET id = id * 1000;
Expand Down
1 change: 1 addition & 0 deletions docqueries/lineGraph/proofOfConcept1.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
-- TODO move to pgtap

Expand Down
1 change: 1 addition & 0 deletions docqueries/lineGraph/proofOfConcept2.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
-- TODO move to pgtap

Expand Down
1 change: 1 addition & 0 deletions docqueries/max_flow/doc-pgr_boykovKolmogorov.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_boykovKolmogorov(
Expand Down
1 change: 1 addition & 0 deletions docqueries/max_flow/doc-pgr_edgeDisjointPaths.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_edgeDisjointPaths(
Expand Down
1 change: 1 addition & 0 deletions docqueries/max_flow/doc-pgr_edmondsKarp.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_edmondsKarp(
Expand Down
1 change: 1 addition & 0 deletions docqueries/max_flow/doc-pgr_maxCardinalityMatch.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q2 */
SELECT * FROM pgr_maxCardinalityMatch(
Expand Down
1 change: 1 addition & 0 deletions docqueries/max_flow/doc-pgr_maxFlow.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_maxFlow(
Expand Down
1 change: 1 addition & 0 deletions docqueries/max_flow/doc-pgr_maxFlowMinCost.test.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-- CopyRight(c) pgRouting developers
-- Creative Commons Attribution-Share Alike 3.0 License : https://creativecommons.org/licenses/by-sa/3.0/
/* -- q1 */
SELECT * FROM pgr_maxFlowMinCost(
Expand Down
Loading