This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 4.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 74842fe6e8f64e11012b475e5138f2770a1702a9 Author: Michael S. Molina <[email protected]> AuthorDate: Thu Feb 29 10:03:20 2024 -0500 fix: Incorrect data type on import page (#27307) (cherry picked from commit fa04eec2d5cdd2698e8a3f28926ab70d17358e86) --- superset/views/database/forms.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/superset/views/database/forms.py b/superset/views/database/forms.py index f8e528c4e3..6b39765bed 100644 --- a/superset/views/database/forms.py +++ b/superset/views/database/forms.py @@ -146,7 +146,8 @@ class CsvToDatabaseForm(UploadToDatabaseForm): description=_( "A dictionary with column names and their data types" " if you need to change the defaults." - ' Example: {"user_id":"integer"}' + ' Example: {"user_id":"int"}. ' + "Check Python's Pandas library for supported data types." ), validators=[Optional()], widget=BS3TextFieldWidget(),
