DanCardin

Results 56 comments of DanCardin

Hi! Since we've been adding UDFs pretty ad-hoc as we personally encounter usecases that affect us, I'm not entirely sure how large this file could reasonably expect to grow, so...

This is available on main or will be released in the next day or so @ 2.5.1, so i'm gonna close it out. thanks for the contribution!

When is this actually a desirable behavior? I feel like the postgresyness of this is actually a boon. Is there a specific example of where it wouldn't be a bug...

Right now, we technically only expose direct redshift access through sqlalchemy, through https://github.com/sqlalchemy-redshift/sqlalchemy-redshift. Once you're attempting to connect through `redshift_connector`, you're leaving behind PMR's internals and connecting directly to the...

i'm surprised that you'd see perf issues with sqlalchemy `engine/connection.execute` calls to tuples. particularly given that i'd expect psycopg2 (cextension) to be drastically faster than redshift_connector (pure python)

I'm going to close this, if you dont mind. There's nothing for us to patch in redshift_connector, and I'm very convinced that sqlalchemy with psycopg2 should be faster anyways, so...

If it helps, the reason we haven't run into this ourselves is because we use sqlalchemy-redshift + alembic + sqlalchemy tables/models to model our databases. Alembic (with sqlalchemy-redshift) will produce...

To be clear, I'm not necessarily against limited parsing the SQL statement, especially because it could likely be scoped to i.e. CREATE TABLE statements. And fyi, this is how we...

You clearly know more than I do, but it's not obvious to me how someone running `source foo.nu` (in say, the pre-prompt or wherever) would be meaningfully different from the...

``` def meow [] { let now = date now echo $"echo '($now)'\ndate now" | save meow.nu source meow.nu } ``` ...i see I'm still not certain i see the...