fix(tinybird): pipe aliases - #4316
Conversation
Signed-off-by: anilb <epipav@gmail.com>
|
|
|
Your PR title doesn't contain a Jira issue key. Consider adding it for better traceability. Example:
Projects:
Please add a Jira issue key to your PR title. |
There was a problem hiding this comment.
Pull request overview
This PR replaces the collections.* wildcard select in the collections_filtered Tinybird pipe with an explicit, fully-aliased column list. In Tinybird/ClickHouse, wildcard expansion combined with FINAL joins and GROUP BY can produce non-deterministic or prefixed output column names; enumerating and aliasing each column ensures the endpoint exposes stable, unprefixed column names that downstream pipes (collections_list, search_collections_projects_repos) rely on.
Changes:
- Expanded
collections.*into 12 explicitcollections.<col> AS <col>projections. - Column set and aliases match the
collectionsdatasource schema exactly and remain consistent with the existingGROUP BY.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
No description provided.