-
-
Notifications
You must be signed in to change notification settings - Fork 373
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
Remove deprecated internal function _pgr_withPointsVia #2742
Remove deprecated internal function _pgr_withPointsVia #2742
Conversation
WalkthroughThis PR updates the pgRouting library by promoting several SQL functions and signatures to official status while removing deprecated and legacy functions. Documentation files have been refreshed to reflect these changes, and the SQL function for handling points via routing has been streamlined with a new parameter set. Additionally, updates in the signature file remove the deprecated internal function and introduce an updated version for point routing. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant SQL_Function as pgr_withPointsVia
participant DBEngine as Database Engine
User->>SQL_Function: Execute pgr_withPointsVia(TEXT, TEXT, ANYARRAY, ... )
SQL_Function->>DBEngine: Process routing query with provided parameters
DBEngine-->>SQL_Function: Return route records
SQL_Function-->>User: Respond with result set
Assessment against linked issues
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Tip 🌐 Web search-backed reviews and chat
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
@coderabbitai review |
🧩 Analysis chain🏁 Script executed:
Length of output: 13298 🏁 Script executed:
Length of output: 663 @cvvergara The changes look good! The PR successfully:
The removal is safe as the new implementation is already in place and being used. I recommend merging these changes. ✅ Actions performedComments resolved. Summary regeneration triggered. |
Fixes #2741
Changes proposed in this pull request:
@pgRouting/admins
Summary by CodeRabbit
New Features
Refactor
Documentation