Skip to content

Commit 8338cc4

Browse files
author
g_j_m
committedDec 1, 2006
Correct a small problem with loading postgres layers due to recent commits.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6158 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 3a75672 commit 8338cc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/postgres/qgspostgresprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ QgsPostgresProvider::QgsPostgresProvider(QString const & uri)
113113
QStringList stuff = reg.capturedTexts();
114114

115115
mSchemaName = stuff[1];
116-
mTableName = stuff[2];
117116
geometryColumn = mTableName.mid(mTableName.find(" (") + 2);
118117
geometryColumn.truncate(geometryColumn.length() - 1);
118+
mTableName = stuff[2];
119119

120120
// Keep a schema qualified table name for convenience later on.
121121
if (mSchemaName.length() > 0)

0 commit comments

Comments
 (0)