Ashhar Hasan
Ashhar Hasan
Closing for now, feel free to reopen if you can reproduce with a stacktrace on a recent version.
This should be a toggle that should default to? IMO it should be `false` by default, whoever needs to hide can chose to hide the partitions. cc: @guyco33 since you...
@lucarosellini Thanks for reminder, I'll explore possibility and update here.
I eventually managed to learn enough to realise what's going on. Unfortunately this is hard to do without introducing costly metadata calls. Postgres marks the parent table for a partitioned...
@izeigerman Sorry about the delay. I was unavailable due to some travel. Thanks for making the fix. It looks good.
how can I verify this works as expected? Is it as simple as importing trino module and seeing if `mypy` for example can do type checking for a script which...
I checked and it wasn't obvious to me that mypy doesn't check types from libraries unless they have py.typed marker. IDEs for example use type information always (even when using...
I'll update here once a new version with this is released (probably in a couple of weeks).
cannot reproduce. ```python from sqlalchemy import create_engine, text import logging logging.basicConfig(level=logging.DEBUG) engine = create_engine("trino://jon@localhost:8080/system") conn = engine.connect() result = conn.execute(text("select 1 as x")).fetchall() for row in result: logging.debug(row) # print(row)...
actually I don't even see a `SELECT version()` issued in my Trino query history. Can you share more information? For example by enabling debug logs for the client so that...