Nok Lam Chan
Nok Lam Chan
> Big fan of (2), pip install kedro including ["kedro-core", "cookiecutter", "rich"]. I will say this is (3). The most notable difference is that `pip install kedro` will automtically install...
> > Besides Nok's proposal, another idea to at least stop relying on Rich would be to try to handle the prompting outside of the cookiecutter context. That would allow...
See this from the fastapi community. Some arguments I see there: - libraries shouldn't try to include extra dependencies as default, but use optional dependencies when needed https://github.com/tiangolo/fastapi/discussions/11733
https://kedro-org.slack.com/archives/C03RKP2LW64/p1716480352120979 It's also valuable to validate the other way round which is common for user to forget to put `@hook_impl`
It looks like @mjspier is already using `kedro-pandera`. I do not think modifying data in hooks is a good idea in general: - hooks execution order are not strongly guaranteed...
I would love to take on this issue if possible. I try to modify the query to ``` query = """ ALTER TABLE DB_NAME.SCHMA_NAME.TBL_NAME ALTER COLUMN MY_COLUMN DROP DEFAULT; """...
https://github.com/tobymao/sqlglot/blob/59de4f6e0f48f5354e7b462fb65633018184aa3c/sqlglot/parser.py#L6024-L6038 This is as far as I can trace so far, so it seems like this is a Parser problem. Since this is a Snowflake specific syntax, this should probably...
I will take a stab over this weekend.
WIP https://github.com/tobymao/sqlglot/pull/3550, I need some help and suggest move the discussion there.
I put this as a community ticket as there is no immediate action we can do. If `pluggy` confirm this is expected, maybe we can add some documents on our...