File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ fn configure_python_venv(py: Python) -> PyResult<()> {
3636}
3737
3838#[ tokio:: test]
39+ #[ ignore]
3940async fn test_pyiceberg_integration ( ) {
4041 let temp_dir = TempDir :: new ( ) . unwrap ( ) ;
4142 let warehouse_path = temp_dir. path ( ) . join ( "warehouse" ) ;
@@ -273,19 +274,19 @@ async fn test_pyiceberg_integration() {
273274 . expect ( "Failed to extract column_names" ) ;
274275
275276 assert ! (
276- column_names. contains( & "L_PARTKEY " . to_string( ) ) ,
277+ column_names. contains( & "l_partkey " . to_string( ) ) ,
277278 "Column L_PARTKEY not found"
278279 ) ;
279280 assert ! (
280- column_names. contains( & "L_QUANTITY " . to_string( ) ) ,
281+ column_names. contains( & "l_quantity " . to_string( ) ) ,
281282 "Column L_QUANTITY not found"
282283 ) ;
283284
284285 println ! ( "✓ PyIceberg table has correct columns: {:?}" , column_names) ;
285286
286287 // Get specific column
287288 let l_partkey_column = arrow_table
288- . call_method1 ( "column" , ( "L_PARTKEY " , ) )
289+ . call_method1 ( "column" , ( "l_partkey " , ) )
289290 . expect ( "Failed to get L_PARTKEY column" ) ;
290291
291292 let partkey_values: Vec < i64 > = l_partkey_column
You can’t perform that action at this time.
0 commit comments