Dave Hirschfeld
Dave Hirschfeld
In my specific case it appears I can hack around it with: ```python @event.listens_for(Base.metadata, "after_create") def set_default_insert_timestamp(target, connection, **kw): for table in target.tables: connection.execute(DDL(f""" ALTER TABLE {table} SET TBLPROPERTIES( 'delta.feature.allowColumnDefaults'...
> *The more people ask for it the easier it will be to prioritise* Just chiming in here that I'd also really like async sypport. As a user of the...
I thought I'd get the ball rolling. Feel free to pick this up / push any changes you want.
This seems to work - the tables have the correct `TBLPROPERTIES` DDL emitted : ``` 2024-02-02 15:00:09,243 INFO sqlalchemy.engine.Engine CREATE SCHEMA IF NOT EXISTS metadata 2024-02-02 15:00:09,244 INFO sqlalchemy.engine.Engine [no...
Does this method have particular benefits over just running a blocking call in a thread?
> docstrings and docs would be written in two different markup languages. For me, it's very rare that I use any sphinx roles in my ([`numpydoc`](https://numpydoc.readthedocs.io/en/latest)) docstrings (if I do,...
As a user of `mkdocs-material` the biggest pain point is api docs and, from my investigation, for markdown there are no api doc tools that are as mature as those...
Might be a useful reference, at least to get some ideas: https://robinpowered.com/blog/best-practice-system-for-organizing-and-tagging-github-issues/ An `Architecture` or `Design` label might be useful to tag issues which touch on the internals and might...
I came here to ask if this would work with the [`perspective-widget`](https://perspective.finos.org/docs/python#jupyterlab) or if all 3rd party widgets need to be individually wrapped to work with `reaction`. It sounds like...
> *I tried installing perspective, but it fails on osx-arm* It's got some pretty complex build deps so your best bet would be to use conda/mamba to get an `osx-arm64`...