summaryrefslogtreecommitdiff
path: root/framework/Data/Common
diff options
context:
space:
mode:
authorgodzilla80@gmx.net <>2009-05-14 07:34:16 +0000
committergodzilla80@gmx.net <>2009-05-14 07:34:16 +0000
commit3e31c85df41985e4bc1fa1da045c02e96043ea2a (patch)
treeca9044594f3459f98860f1aa608cb39321e2df4e /framework/Data/Common
parent7c6ca9a1d405826acc53ca9b1d61a748fb477180 (diff)
TPgsqlTableInfo::getTableFullName() return void if no schema given
Diffstat (limited to 'framework/Data/Common')
-rw-r--r--framework/Data/Common/Pgsql/TPgsqlTableInfo.php2
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();
}
/**