Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Postgreprovider hide raster overviews #59884

Merged
merged 13 commits into from
Jan 17, 2025
Prev Previous commit
Next Next commit
make const
Co-authored-by: Stefanos Natsis <uclaros@gmail.com>
JanCaha and uclaros authored Jan 16, 2025
commit eb4f10f272b1718dda05efd20a62f221d1af470c
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresconn.cpp
Original file line number Diff line number Diff line change
@@ -1094,7 +1094,7 @@ bool QgsPostgresConn::getTableInfo( bool searchGeometryColumnsOnly, bool searchP
else
{
bool keepRasterTable = true;
for ( QgsPostgresRasterOverviewLayerProperty overview : overviews )
for ( const QgsPostgresRasterOverviewLayerProperty &overview : std::as_const( overviews ) )
{
if ( property.schemaName == overview.schemaName && property.tableName == overview.tableName )
{