File tree Expand file tree Collapse file tree
src/duckdb_py/include/duckdb_python/import_cache/modules Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 " pyarrow.decimal32" ,
2121 " pyarrow.decimal64" ,
2222 " pyarrow.decimal128"
23- ]
23+ ],
24+ "required" : false
2425 },
2526 "pyarrow.dataset" : {
2627 "type" : " module" ,
2930 "children" : [
3031 " pyarrow.dataset.Scanner" ,
3132 " pyarrow.dataset.Dataset"
32- ]
33+ ],
34+ "required" : false
3335 },
3436 "pyarrow.dataset.Scanner" : {
3537 "type" : " attribute" ,
Original file line number Diff line number Diff line change @@ -46,6 +46,11 @@ struct PyarrowDatasetCacheItem : public PythonImportCacheItem {
4646
4747 PythonImportCacheItem Scanner;
4848 PythonImportCacheItem Dataset;
49+
50+ protected:
51+ bool IsRequired () const override final {
52+ return false ;
53+ }
4954};
5055
5156struct PyarrowCacheItem : public PythonImportCacheItem {
@@ -80,6 +85,11 @@ struct PyarrowCacheItem : public PythonImportCacheItem {
8085 PythonImportCacheItem decimal32;
8186 PythonImportCacheItem decimal64;
8287 PythonImportCacheItem decimal128;
88+
89+ protected:
90+ bool IsRequired () const override final {
91+ return false ;
92+ }
8393};
8494
8595} // namespace duckdb
You can’t perform that action at this time.
0 commit comments