Hi,
for now you can replace line 155 in administrator/components/com_grid/models/grid.php
$this->_tbList=$db->getTableList();
with
$query = "SELECT TABLE_NAME FROM information_schema.tables";
$db->setQuery( $query );
$this->_tbList=$db->loadColumn();
This should do. We will include the fix in the next release.