-
-
Notifications
You must be signed in to change notification settings - Fork 377
Removal of _pgr_kruskal deprecated internal function #2746
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
Removal of _pgr_kruskal deprecated internal function #2746
Conversation
* SQL removal * C NOTICE raised about deprecation
WalkthroughThe pull request updates pgRouting for the 4.0.0 release by promoting various functions and signatures (e.g., pgr_trsp, pgr_aStar) to official status while removing several deprecated SQL and internal functions—including multiple variants of pgr_trsp and the internal _pgr_kruskal. The changes also document enhancements in release notes and adjust function signatures in SQL files. Additionally, the C implementation now issues a deprecation notice when _pgr_kruskal is invoked. Changes
Sequence Diagram(s)sequenceDiagram
participant Q as Query Caller
participant K as _pgr_kruskal (C Function)
participant L as Log System
Q->>K: Call _pgr_kruskal(...)
K->>L: Emit deprecation notice
K->>K: Process legacy logic
K-->>Q: Return result
Assessment against linked issues
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (5)
💤 Files with no reviewable changes (2)
🧰 Additional context used📓 Learnings (4)📓 Common learningssrc/spanningTree/kruskal.c (1)NEWS.md (2)doc/src/release_notes.rst (2)⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (7)
🪧 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: 56925 @cvvergara The changes look good. The PR implements:
🧠 Learnings used✅ Actions performedReview triggered.
|
sanak
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Fixes #2745
Changes proposed in this pull request:
@coderabbitai review
Summary by CodeRabbit
@pgRouting/admins