Skip to content

Commit

Permalink
Merge pull request #3904 from dullbananas/patch-1
Browse files Browse the repository at this point in the history
Fix error message that mentions wrong feature
  • Loading branch information
weiznich authored Jan 15, 2024
2 parents 5f173ab + 697b4cf commit 166b97c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diesel_derives/src/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub(crate) fn expand(input: TableDecl) -> TokenStream {
more than 128 columns. Consider using less columns."
} else if input.column_defs.len() > 64 {
"Table contains more than 64 columns. Consider enabling the \
`32-column-tables` feature to enable diesels support for \
`128-column-tables` feature to enable diesels support for \
tables with more than 64 columns."
} else if input.column_defs.len() > 32 {
"Table contains more than 32 columns. Consider enabling the \
Expand Down

0 comments on commit 166b97c

Please sign in to comment.