forked from extern/egroupware
* Backup/PostgreSQL: indexes were not reported for backup
because of quoting of table-name
This commit is contained in:
parent
41d9b049f2
commit
dc696455cc
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user