File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
bindings/python/benchmarks Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,9 @@ def time_conventional_ndarray(self):
220220 def time_conventional_pandas (self ):
221221 pass
222222
223+ def time_conventional_polars (self ):
224+ pass
225+
223226
224227class ProfileReadDocument (Read ):
225228 schema = Schema (
@@ -248,19 +251,25 @@ def setup(self):
248251 % (N_DOCS , len (BSON .encode (base_dict )) // 1024 , len (base_dict ))
249252 )
250253
251- # All of the following tests are being skipped because NumPy/Pandas do not work with nested documents.
254+ # All of the following tests are being skipped because NumPy/Pandas/Polars do not work with nested documents.
252255 def time_to_numpy (self ):
253256 pass
254257
255258 def time_to_pandas (self ):
256259 pass
257260
261+ def time_to_polars (self ):
262+ pass
263+
258264 def time_conventional_ndarray (self ):
259265 pass
260266
261267 def time_conventional_pandas (self ):
262268 pass
263269
270+ def time_conventional_polars (self ):
271+ pass
272+
264273
265274class ProfileReadSmall (Read ):
266275 schema = Schema ({"x" : pa .int64 (), "y" : pa .float64 ()})
You can’t perform that action at this time.
0 commit comments