Skip to content

Commit 71d099a

Browse files
author
jef
committed
default to geometry postgres tables
git-svn-id: http://svn.osgeo.org/qgis/trunk@14267 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent c07fd4a commit 71d099a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/postgres/qgspgnewconnection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ QgsPgNewConnection::QgsPgNewConnection( QWidget *parent, const QString& connName
5858
txtPort->setText( port );
5959
cb_publicSchemaOnly->setChecked( settings.value( key + "/publicOnly", false ).toBool() );
6060
cb_geometryColumnsOnly->setChecked( settings.value( key + "/geometrycolumnsOnly", false ).toBool() );
61-
cb_allowGeometrylessTables->setChecked( settings.value( key + "/allowGeometrylessTables", true ).toBool() );
61+
cb_allowGeometrylessTables->setChecked( settings.value( key + "/allowGeometrylessTables", false ).toBool() );
6262
// Ensure that cb_publicSchemaOnly is set correctly
6363
on_cb_geometryColumnsOnly_clicked();
6464

src/app/postgres/qgspgsourceselect.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ void QgsPgSourceSelect::on_btnConnect_clicked()
429429

430430
bool searchPublicOnly = settings.value( key + "/publicOnly" ).toBool();
431431
bool searchGeometryColumnsOnly = settings.value( key + "/geometryColumnsOnly" ).toBool();
432-
bool allowGeometrylessTables = settings.value( key + "/allowGeometrylessTables", true ).toBool();
432+
bool allowGeometrylessTables = settings.value( key + "/allowGeometrylessTables", false ).toBool();
433433
mUseEstimatedMetadata = settings.value( key + "/estimatedMetadata" ).toBool();
434434
// Need to escape the password to allow for single quotes and backslashes
435435

0 commit comments

Comments
 (0)