Add logical table support to TLS integration tests#17683
Merged
KKcorps merged 2 commits intoapache:masterfrom Feb 12, 2026
Merged
Add logical table support to TLS integration tests#17683KKcorps merged 2 commits intoapache:masterfrom
KKcorps merged 2 commits intoapache:masterfrom
Conversation
Add createLogicalTableConfig() and createLogicalTable() to BaseClusterIntegrationTest so subclasses can create a logical table backed by the existing OFFLINE and REALTIME physical tables. Override createLogicalTable() in TlsIntegrationTest to pass AUTH_HEADER, reusing the config object from the base class. Schema creation is handled independently in setUp(). Add testLogicalTableTlsRouting() to verify logical table queries work over both the Pinot TLS connection and the external broker TLS endpoint. https://claude.ai/code/session_01WJtj1jpKYqaVn8RkT2NRVL
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #17683 +/- ##
=========================================
Coverage 63.25% 63.26%
Complexity 1499 1499
=========================================
Files 3174 3174
Lines 190373 190373
Branches 29089 29089
=========================================
+ Hits 120415 120430 +15
+ Misses 60624 60601 -23
- Partials 9334 9342 +8
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
KKcorps
approved these changes
Feb 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds support for logical tables in the TLS integration test.
Addresses feedback #17663 (comment)