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
by mail, from Jean-Luc:
currently, the following incorrect column selection leads to an error message that's not very descriptive:
# write some data temp_file <- tempfile() fst::write.fst(data.frame(A = 1:26, B = LETTERS), temp_file) # incorrect column selection fst::read_fst(temp_file, columns = "b") #> Error in fst::read_fst(temp_file, columns = c("B", "a")) : #> Selected column not found.
It would be nice to have the error message reflect the incorrect column name (a in this case).
The text was updated successfully, but these errors were encountered:
Any update on this, I was just about to post a new request for it, as I'm having issues and the error message could definitely be more helpful! 😄
Sorry, something went wrong.
5ddc6fd
Hi @Moohan, thanks for your request.
I've updated the error message, an incorrect column selection now leads to:
# write some data temp_file <- tempfile() fst::write.fst(data.frame(A = 1:26, B = LETTERS), temp_file) # incorrect column selection fst::read_fst(temp_file, columns = c("b", "A")) #> Error in fst::read_fst(temp_file, columns = c("b", "A")): Column 'b' not found
short but informative 😸
MarcusKlik
No branches or pull requests
by mail, from Jean-Luc:
currently, the following incorrect column selection leads to an error message that's not very descriptive:
It would be nice to have the error message reflect the incorrect column name (a in this case).
The text was updated successfully, but these errors were encountered: