-
-
Notifications
You must be signed in to change notification settings - Fork 519
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
Codegen for compact Entity format #138
Milestone
Comments
So, at the end the codegen can produce codes of one of the formats? Let say, compact & expanded format. |
billy1624
changed the title
Codegen for short Entity format
Codegen for compact Entity format
Sep 10, 2021
billy1624
added a commit
to SeaQL/seaql.github.io
that referenced
this issue
Sep 17, 2021
|
I discovered a slightly strange behavior, is when there no relation, it will not derive // Filling.rs #[derive(Copy, Clone, Debug, EnumIter)]
pub enum Relation {}
impl RelationTrait for Relation {
fn def(&self) -> RelationDef {
match self {
_ => panic!("No RelationDef"),
}
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think it's better for us to preserve the functionality to generate the current long Entity format, and can be switched on with a command line arguemnt.
The text was updated successfully, but these errors were encountered: