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
use magic number to specify projection columns makes user confuse:
... let name = "Alice".into(); let upper = "Bob".into(); let mut scan = txn .scan((Bound::Included(&name), Bound::Excluded(&upper))) // what `1` means??? .projection(vec![1]) .take() .await .unwrap(); ...
The text was updated successfully, but these errors were encountered:
To get started with the project, I would like to pick this issue up. I know its in Draft, but please do share more info sooner later
Sorry, something went wrong.
@dharanad sure, I will complete it, also if you have good ideas about this design, please generously share it 😄
No branches or pull requests
use magic number to specify projection columns makes user confuse:
The text was updated successfully, but these errors were encountered: