Closed
Description
Is your feature request related to a problem? Please describe.
Quickly looking through the source code, it looks like there is no support for partition/cluster configuration at time of table creation. The best reference I see anywhere close to this is in the function base.py -> get_indexes. So it looks like we can just get indexing information but not set indexing.
Describe the solution you'd like
Added support for index configuration.
Describe alternatives you've considered
Will probably need to make another SQL query to check metadata if indexing is in place, and if not, set the indexing via SQLalchemy text() function.