We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Relation and Record definitions allow using ColumnDef's of same name as long as they're of different type.
ColumnDef
Adding multiple ColumnDef's with the same name to a record should fail at compile-time or runtime.
Record(Seq(ColumnDef[Int]("id"), ColumnDef[String]("id"))) // does not fail ever
The text was updated successfully, but these errors were encountered:
In the mean time we changed our column definitions to be
Record(Set(ColumnDef[Int]("id"), ColumnDef[String]("id"))) // does not fail ever
Sorry, something went wrong.
No branches or pull requests
Bug Report
Relation and Record definitions allow using
ColumnDef
's of same name as long as they're of different type.Expected Behavior
Adding multiple
ColumnDef
's with the same name to a record should fail at compile-time or runtime.Actual Behavior
Steps to Reproduce the Problem
Specifications and Environment
The text was updated successfully, but these errors were encountered: