Description
This is a suggest / query / pre-PR question.
I am pulling a db from serverA to serverB and running a search-replace on it. It is failing because the dB contains a view. The view references the serverA MySQL user which doesn't exist on serverB.
(presuming I'm not missing something / haven't messed something up in my setup...)
I don't know of any reason to run a search-replace on a View as they are dynamic by nature. Would a PR to skip them be accepted? Is there any reason Views should be included?
These would work on MySQL/MariaDB (but haven't been extensively tested):
SHOW TABLE STATUS
# WHERE `comment` != 'VIEW'
WHERE `Rows` IS NOT NULL
It would mean modifying wp_get_table_names()
in wp-cli/php/utils-wp.php fairly extensively, unless there's an easier way to identify Views.
I think this is going to get more widely applicable if the use of a View in core goes ahead (wasn't there talk of a View for taxonomy data?)
While I'm obviously talking about modifying a function in core wp-cli I thought I'd post this hear first as the most obvious (to me) place that it would affect and use case for the change.