trino-python-client
trino-python-client copied to clipboard
Python client for Trino
rename client to _client. relates to https://github.com/prestosql/presto-python-client/pull/41#issuecomment-689613917 cc @hashhar
Hello there. I've found that these two examples will not always return the same thing on large queries: 1. fetchall ``` cur.execute(large_query) rows = cur.fetchall() print(rows) ``` 2. iterator ```...
Hello, I would like to add support for self-signed SSL certificates. Requests can ignore verifying the SSL certificate if we set verify to False: Unfortunately, in this library, it is...
Over couple of recent releases (up to including Presto 341), Presto gained support for variable precision `time`, `timestamp`, `time with time zone`, `timestamp with time zone` types. For backward compatibility...
Hello, I have currently prepared the Docker environment, there are 3 containers: * Kerberos KDC * Presto with SSL+Kerberos * Client machine Link: https://github.com/mik-laj/presto-kerberos-docker All Keytab keys, SSL certificates are...
### Expected behavior None values are mapped to `None` in `_array_map_func` E.g ``` def _array_map_func(self, column): element_mapping_func = self._col_func(column['arguments'][0]['value']) return lambda values: [element_mapping_func(value) if value is not None else None...
## Description Per the [SQLAlchemy documentation](https://docs.sqlalchemy.org/en/14/core/reflection.html#sqlalchemy.engine.reflection.Inspector.get_table_names) the `get_table_names` method is intended to return the real table names, i.e., without views. The PR updates the `get_table_names` to only return real table...
## Description Querying the `information_schema.views` table seems to be sub-performant for determining which entities are views—I speculate this is because all the view definitions need to be extracted/compiled. A more...
## Description This is where type enforcement would be really helpful. For the SQLAlchemy dialect the `has_schema` method was being passed the SQLAlchemy engine as opposed to the corresponding connection...
### Describe the feature trino cli has `access-token` option to passing token. if access-token set every request has token info. ### Describe alternatives you've considered _No response_ ### Are you...