Open mgroholski opened 1 year ago
Should be fixed by editing two files:
modin/core/storage_formats/pandas/parsers.py Line 884: df = pandas.read_sql(sqlalchemy.text(sql), con, index_col=index_col, **kwargs)
modin/core/io/sql/sql_dispatcher.py Line 72: row_count_query = sqlalchemy.text(con.row_count_query(sql)) Line 74: colum_names_query = sqlalchemy.text(con.column_names_query(sql))
Modin version checks
[X] I have checked that this issue has not already been reported.
[X] I have confirmed this bug exists on the latest released version of Modin.
[X] I have confirmed this bug exists on the main branch of Modin. (In order to do this you can follow this guide.)
Reproducible Example
Issue Description
The count query to divide the data into workers is not wrapped in sqlalchemy.text()
Expected Behavior
Return data frame of sql data.
Error Logs
Installed Versions