An option for selecting all columns
Closed this issue · 3 comments
Deleted user commented
In the SELECT(String... columns)
it will be better if no arguments are accounted to all columns instead of throwing an exception, writing all column names can get tedious will be happy to do a PR for this
sockeqwe commented
I think it's good practice to only specify which columns you want to read to reduce the amount of loaded data.
Nevertheless, you can write SELECT("*")
which is mor expressive since you know what "*" means
Deleted user commented
agrees, that works with the current logic as well added a javadoc comment to make this more obvious
#13
sockeqwe commented
thanks!