You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dolt server now partially implements server side cursors.
Some caveats:
We only allow one server side cursor to be open at a time.
The results are not stored in a temporary table like in MySQL, but rather we have a goroutine that blocks spooling the results from COM_STMT_EXECUTE, and waits for COM_STMT_FETCH.
Regardless it seems like dolt works well enough with MySQL FDW 2.9.0
Recently the MySQL FDW added the use of the mysql_stmt_store_result function. This requires server side cursors.
Until then we will support MySQL FDW up till REL-2_7_0
The text was updated successfully, but these errors were encountered: