Hello Everyone,
I’ve been trying to retrieve a DESCRIBE result from MemSQL to a dataframe, however it retrieves String for the columns that are VARCHAR(XX). Does someone know how can I get exactly the column types as it is retrieved on MySQL Workbench?
Ex: MySQL Workbench:
±------------------±--------±------+
| col_name|data_type|comment|
±------------------±--------±------+
|name| varchar(5)| null|
Dataframe
±------------------±--------±------+
| col_name|data_type|comment|
±------------------±--------±------+
|name| String| null|