* 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:10:30 +00:00
parent 7074ef6142
commit 0fbda219df

View File

@ -576,6 +576,9 @@ select viewname,'V' from pg_views where viewname like $mask";
{ {
global $ADODB_FETCH_MODE; 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; $schema = false;
$this->_findschema($table,$schema); $this->_findschema($table,$schema);