Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign upDiesel with large-tables feature is not compiling #1634
Comments
This comment has been minimized.
|
Workaround: Change "large-tables" into "32-column-tables" (Or just remove that feature because that's now the new default). @diesel-rs/core As far as I could see this happens because we deny warning in diesel and then drop a warning that we deprecated the large-table feature inside of diesel. So the build will fail. Error message
|
weiznich
added
the
breaking change
label
Apr 12, 2018
This comment has been minimized.
flosse
commented
Apr 12, 2018
|
I got the same issue! |
added a commit
that referenced
this issue
Apr 12, 2018
sgrif
closed this
in
f6671c5
Apr 12, 2018
This comment has been minimized.
|
I've released 1.2.2 with a short term fix, and opened #1636 to come up with a better long term answer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Flakebi commentedApr 12, 2018
Setup
Versions
Feature Flags
Problem Description
Steps to reproduce
This happens not with diesel 1.1 (so I'm locking it to this version for now) and compiling without feature flags works just fine.
Minimal example:
Add
diesel = { version = "*", features = ["large-tables"] }to Cargo.tomland
extern crate diesel;to main.rsand
cargo build.Checklist
Well, I did search the issue tracker for this error message, now I found out that this feature was renamed/activated by default so it’s not a real issue anymore (removing the feature fixes the issue).
It would be nice though if the error message would be more clear (and it would have saved me quite some time).