File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ default = []
20
20
bundled = [" libduckdb-sys/bundled" ]
21
21
json = [" libduckdb-sys/json" , " bundled" ]
22
22
parquet = [" libduckdb-sys/parquet" , " bundled" ]
23
- vscalar = []
23
+ vscalar = [" vtab-arrow " ]
24
24
vscalar-arrow = []
25
25
vtab = []
26
26
vtab-loadable = [" vtab" , " duckdb-loadable-macros" ]
Original file line number Diff line number Diff line change @@ -1218,6 +1218,7 @@ mod test {
1218
1218
}
1219
1219
1220
1220
#[ test]
1221
+ #[ cfg( feature = "appender-arrow" ) ]
1221
1222
fn test_append_struct ( ) -> Result < ( ) , Box < dyn Error > > {
1222
1223
let db = Connection :: open_in_memory ( ) ?;
1223
1224
db. execute_batch ( "CREATE TABLE t1 (s STRUCT(v VARCHAR, i INTEGER))" ) ?;
@@ -1254,6 +1255,7 @@ mod test {
1254
1255
}
1255
1256
1256
1257
#[ test]
1258
+ #[ cfg( feature = "appender-arrow" ) ]
1257
1259
fn test_append_struct_contains_null ( ) -> Result < ( ) , Box < dyn Error > > {
1258
1260
let db = Connection :: open_in_memory ( ) ?;
1259
1261
db. execute_batch ( "CREATE TABLE t1 (s STRUCT(v VARCHAR, i INTEGER))" ) ?;
You can’t perform that action at this time.
0 commit comments