bito-code-review[bot] commented on PR #35809:
URL: https://github.com/apache/superset/pull/35809#issuecomment-3434595431
<details open>
<summary><strong>Interaction Diagram by <a
href="https://bito.ai#sequence_diagram">Bito</a></strong></summary>
```mermaid
sequenceDiagram
participant DEV as Developer
participant CLI as Command Line Interface
participant LIB as lib.py<br/>🔄 Updated | ●●● High
participant GEN as generate_feature_tables()<br/>🟩 Added | ●●● High
participant HELP as Helper Functions<br/>🟩 Added | ●●○ Medium
participant README as README.md<br/>🔄 Updated | ●●● High
participant APP as Superset App Context
participant SPECS as DB Engine Specs
Note over LIB, GEN: New table generation system<br/>replaces single large
table
DEV->>CLI: python superset/db_engine_specs/lib.py
CLI->>APP: create_app()
APP->>LIB: Initialize app context
LIB->>GEN: generate_feature_tables()
GEN->>SPECS: load_engine_specs()
SPECS-->>GEN: Return all engine specs
GEN->>HELP: format_markdown_table()
HELP-->>GEN: Formatted table sections
GEN-->>LIB: Complete markdown output
LIB-->>CLI: Print organized tables
CLI-->>README: Update documentation
README-->>DEV: Enhanced navigation & readability
```
Critical path: Command Line
Interface->lib.py->generate_feature_tables()->Helper
Functions->README.md
> **Note:** The DB engine specs documentation system was refactored from
generating a single large table to creating multiple organized tables with
navigation. The new generate_feature_tables() function replaces the old
generate_table() approach, providing better categorization and readability for
database feature comparisons.
</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]