diff options
author | godzilla80@gmx.net <> | 2009-05-14 07:34:16 +0000 |
---|---|---|
committer | godzilla80@gmx.net <> | 2009-05-14 07:34:16 +0000 |
commit | 3e31c85df41985e4bc1fa1da045c02e96043ea2a (patch) | |
tree | ca9044594f3459f98860f1aa608cb39321e2df4e /framework/Data/Common/Pgsql/TPgsqlTableInfo.php | |
parent | 7c6ca9a1d405826acc53ca9b1d61a748fb477180 (diff) |
TPgsqlTableInfo::getTableFullName() return void if no schema given
Diffstat (limited to 'framework/Data/Common/Pgsql/TPgsqlTableInfo.php')
-rw-r--r-- | framework/Data/Common/Pgsql/TPgsqlTableInfo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Data/Common/Pgsql/TPgsqlTableInfo.php b/framework/Data/Common/Pgsql/TPgsqlTableInfo.php index 2447c141..1a634c19 100644 --- a/framework/Data/Common/Pgsql/TPgsqlTableInfo.php +++ b/framework/Data/Common/Pgsql/TPgsqlTableInfo.php @@ -42,7 +42,7 @@ class TPgsqlTableInfo extends TDbTableInfo if(($schema=$this->getSchemaName())!==null)
return $schema.'.'.$this->getTableName();
else
- $this->getTableName();
+ return $this->getTableName();
}
/**
|