mistercrunch commented on code in PR #31587:
URL: https://github.com/apache/superset/pull/31587#discussion_r2274365039
##########
superset/databases/utils.py:
##########
@@ -55,7 +55,7 @@ def get_indexes_metadata(
def get_col_type(col: dict[Any, Any]) -> str:
try:
- dtype = f"{col['type']}"
+ dtype = repr(col["type"])
Review Comment:
noting that better/more-specific types in the method signature would help
understand what we're dealing with here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]