Skip to content
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

analysis: generate sheet relation diagram about Merger/Scatter #68

Open
wenchy opened this issue Jun 13, 2023 · 0 comments
Open

analysis: generate sheet relation diagram about Merger/Scatter #68

wenchy opened this issue Jun 13, 2023 · 0 comments
Labels
WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.

Comments

@wenchy
Copy link
Member

wenchy commented Jun 13, 2023

message Diagram {
    map<string, Book> books = 1; // book name -> Book
    message Book {
        string alias = 1; // alias
        map<string, Sheet> sheets = 2; // sheet name -> Sheet
    }
    message Sheet {
        string alias = 1; // alias
        Primary primary = 2;
    }
    message Primary {
        string book_name = 1;
        string sheet_name = 2;
        RelationType relation_type = 3; 
    }
    enum RelationType {
        RELATION_TYPE_MERGER = 1;
        RELATION_TYPE_SCATTER = 2;
    }
}

@wenchy wenchy added the WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided. label Jun 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
WaitingForInfo Issue is not actionable because of missing required information, which needs to be provided.
Projects
None yet
Development

No branches or pull requests

1 participant