eyalsh99

Results 5 comments of eyalsh99

> Possibly a duplicate of #23982, do you have that sort of datetime partition / can you try a table without that to isolate the issue? Specifically the comment [#23982...

I was able to debug the problem and found that it was caused by the stringification of the data type at [_create_column_info function](https://github.com/apache/superset/blob/2499a1cf5a7f298c1ee2f34b3d67ca1d18bb7457/superset/db_engine_specs/presto.py#L839). It expects to get a column type...

> Nice problem solving! Thanks for the update. Are you able to propose a fix to the codebase and send a pull request? Thanks. Sure, I'll send the PR.

> @eyalsh99 what you change to fix the issue? You should go to superset/db_engine_specs/presto.py and in _create_column_info function do the following change: "type": f"{data_type}", ==> "type": data_type, The function is...

> @eyalsh99 are you still planning to open a PR for that change (and maybe add a test if we're lucky?) Apologies for the late response. Submitted the PR: #28305