* Backup/PostgreSQL: indexes were not reported for backup

because of quoting of table-name
This commit is contained in:
Ralf Becker 2015-08-26 11:09:55 +00:00
parent 41d9b049f2
commit dc696455cc

View File

@ -576,6 +576,9 @@ select viewname,'V' from pg_views where viewname like $mask";
{
global $ADODB_FETCH_MODE;
// table-name must NOT be quoted, otherwise we will not find any index
$table = str_replace($this->nameQuote, '', $table);
$schema = false;
$this->_findschema($table,$schema);