bito-code-review[bot] commented on PR #35773:
URL: https://github.com/apache/superset/pull/35773#issuecomment-3426548442
<details open>
<summary><strong>Interaction Diagram by <a
href="https://bito.ai#sequence_diagram">Bito</a></strong></summary>
```mermaid
sequenceDiagram
participant UI as ResultSet Component<br/>🔄 Updated | ●●○ Medium
participant Store as Redux Store
participant Action as fetchQueryResults Action
participant API as SqlLab API Endpoint
participant Cmd as SqlExecutionResultsCommand
participant Backend as Results Backend
Note over UI: Now includes immutableId<br/>in query selector
UI->>Store: Select query with immutableId
Store-->>UI: Return query object
UI->>Action: dispatch(fetchQueryResults(query))
Action->>API: GET /api/v1/sqllab/results/
API->>Cmd: SqlExecutionResultsCommand.run()
Cmd->>Backend: Retrieve cached results
Backend-->>Cmd: Return query results
Cmd-->>API: Formatted response
API-->>Action: JSON response
Action-->>UI: Query results with immutableId
```
Critical path: ResultSet Component->Redux Store->fetchQueryResults
Action->SqlLab API Endpoint->SqlExecutionResultsCommand
> **Note:** The ResultSet component now includes immutableId in its query
selector, ensuring this identifier is available when fetching query results.
This enables better query tracking and event filtering in the SqlLab system.
</details>
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]