diff --git a/orso/dataframe.py b/orso/dataframe.py index 49b6ffc..e5211c2 100644 --- a/orso/dataframe.py +++ b/orso/dataframe.py @@ -213,6 +213,8 @@ def collect( """ from orso.compute.compiled import collect_cython + self.materialize() + if limit is None or limit < 0: limit = -1 diff --git a/orso/version.py b/orso/version.py index 55ba3a3..444ff9e 100644 --- a/orso/version.py +++ b/orso/version.py @@ -10,5 +10,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__: str = "0.0.173" +__version__: str = "0.0.174" __author__: str = "@joocer"