-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test failed with `test panicked: Column index 2 out of bounds 2 + 0` The 0 schema len was due to this part of the plan: ``` └── LogicalProjection ├── exprs:Cast │ ├── cast_to: Decimal128(38, 15) │ ├── child:Mul │ │ ├── Cast { cast_to: Float64, child: #0 } │ │ └── 0.0001(float) ``` Turns out, `BinOp` was being considered to have an empty schema length. Let me know if this fix does not take into account some case. --------- Signed-off-by: Alex Chi <iskyzh@gmail.com> Co-authored-by: Alex Chi <iskyzh@gmail.com>
- Loading branch information
Showing
4 changed files
with
51 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters