Đặng Minh Dũng
Đặng Minh Dũng
@john-bodley Trino using official driver, not PyHive as Presto. This mean that a lot of functions like `get_table_names`, `get_view_names`, `handle_cursor`, etc... are very different between 2 drivers. Further more, Trino...
@john-bodley 2 projects are now different enough to have separated EngineSpec (at least in driver side). You just save a few line of code by let `TrinoEngineSpec` inherit messy code...
@john-bodley an other way to reusing code is the mixing pattern.
@villebro perhaps `latest_partition` issue is fixed in trinodb/trino-python-client#219. Waiting for next release.
It would be nice if image SHA256 available. In some case I wanna use `app/foobar@sha256:294d69bb580a614ed3128969b95b5355c480e84704d826cdf73e790b5a6e63fc`
> Note that we need to keep older names for backward compatibility. You can implement [Conversion Webhook](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning/#webhook-conversion) to convert old CRD to new one as [cert-manager did](https://github.com/jetstack/cert-manager/pull/2093)
Trino like this :+1:
Hello @matt12eagles, @mapshen Did you try: ```python engine = create_engine(..., connect_args=dict( http_headers={ 'X-Presto-Extra-Credential': f"access-token={ACCESS_TOKEN}" }, ) ) ``
Hello @erikerlandson It's pandas, right? Currently, [`df.to_sql` has no `catalog` param](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_sql.html), so there is no way to pass `catalog` to trino driver. If you find a way to do this,...
Let's me check it out :)