Mike Perlov

Results 12 comments of Mike Perlov

Same here with SSHFS (FUSE) to local VM on Parallels, CodeKit 2.1.7, OSX 10.9.5

@ptmcg a) yep, it is enabled b) hah, then I guessed it right. However, I think it would be a viable option to just document that parse_actions should expect single...

@ptmcg thanks for the tips. I'll try the tests, great idea and also check the links. I haven't had issues with groups since I have "captive" parse_actions (each term becomes...

@ptmcg thanks! I guess I got a bit lazy rushing these ones in. I’ll need to refactor code that relies on my SAS_OPERATORS enum to make it work, but will...

@ptmcg I am definitely planning to collapse operators and precedence in that fashion, totally makes sense. The problem I had is that there is quite a lot of downstream code...

> Getting Error in your cookiecutter. > > ``` > newest_deps [n]: > Traceback (most recent call last): > File "C:\Users\main user\AppData\Local\Temp\tmp6cqut0_i.py", line 8, in > import pwd > ModuleNotFoundError:...

@kayhayen I can provide some context, hopefully it helps troubleshooting. * Generally polars + duckdb worked in my other tests, but this specific case is failing. maybe something is wrong...

weird, now I am trying to find what worked and can't, it fails all the time. Tried this: ```py import polars as pl import duckdb df = pl.DataFrame({ 'column1': ['value1']...

ok..I think I found it. I removed pyarrow and used physical files to move data from dataframe to duckdb and it worked: ```py from pathlib import Path import tempfile import...