Commit 8ca1fda 1 parent 2b3fb04 commit 8ca1fda Copy full SHA for 8ca1fda
File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ async fn test_fn_ascii() -> Result<()> {
111
111
112
112
#[ tokio:: test]
113
113
async fn test_fn_bit_length ( ) -> Result < ( ) > {
114
- let expr = bit_length ( col ( "a" ) ) ;
114
+ let expr = bit_length ( vec ! [ col( "a" ) ] ) ;
115
115
116
116
let expected = [
117
117
"+--------------------+" ,
@@ -247,7 +247,7 @@ async fn test_fn_character_length() -> Result<()> {
247
247
248
248
#[ tokio:: test]
249
249
async fn test_fn_chr ( ) -> Result < ( ) > {
250
- let expr = chr ( lit ( 128175 ) ) ;
250
+ let expr = chr ( vec ! [ lit( 128175 ) ] ) ;
251
251
252
252
let expected = [
253
253
"+--------------------+" ,
Original file line number Diff line number Diff line change 16
16
// under the License.
17
17
18
18
use std:: any:: Any ;
19
- use std:: iter;
20
19
use std:: sync:: Arc ;
21
20
22
21
use arrow:: array:: ArrayRef ;
You can’t perform that action at this time.
0 commit comments