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