You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: datafusion-examples/examples/custom_file_casts.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ use object_store::path::Path;
41
41
use object_store::{ObjectStore,PutPayload};
42
42
43
43
// Example showing how to implement custom casting rules to adapt file schemas.
44
-
// This example enforces that casts must be stricly widening: if the file type is Int64 and the table type is Int32, it will error
44
+
// This example enforces that casts must be strictly widening: if the file type is Int64 and the table type is Int32, it will error
45
45
// before even reading the data.
46
46
// Without this custom cast rule DataFusion would happily do the narrowing cast, potentially erroring only if it found a row with data it could not cast.
0 commit comments