My import via restore.php fails to upload the views_view table. Upon looking closer in the data/views_view exported file, dump.php appears to put a '0x' in that field, when in fact the field within Drupal is 0b (zero bytes, Type BLOB).
When I export the same table to SQL via phpmyadmin, the field is empty (two single quotes).
Has anyone else run into this problem or have any insight on how to fix it? My work-around is currently to manually edit that file: views_view.sql, and change the field content from '0x' TO ''
TIA