Skip to content

Commit

Permalink
Update src/daft-sql/src/planner.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Jay Chia <17691182+jaychia@users.noreply.github.com>
  • Loading branch information
universalmind303 and jaychia authored Sep 24, 2024
1 parent ffe17d2 commit 9d159bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daft-sql/src/planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ impl SQLPlanner {
stride,
} => {
if stride.is_some() {
unsupported_sql_err!("stride");
unsupported_sql_err!("stride cannot be provided when slicing an expression");
}
match (lower_bound, upper_bound) {
(Some(lower), Some(upper)) => {
Expand Down

0 comments on commit 9d159bd

Please sign in to comment.