Skip to content

Commit

Permalink
change to QStringLiteral
Browse files Browse the repository at this point in the history
Co-authored-by: Stefanos Natsis <uclaros@gmail.com>
  • Loading branch information
JanCaha and uclaros authored Jan 16, 2025
1 parent ea79972 commit 7bd6fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresconn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1066,7 +1066,7 @@ bool QgsPostgresConn::getTableInfo( bool searchGeometryColumnsOnly, bool searchP

if ( resultRasterOverviewsExist.result() && resultRasterOverviewsExist.PQntuples() > 0 )
{
QString sqlRasterOverviews = QString( "SELECT o_table_schema, o_table_name FROM public.raster_overviews" );
const QString sqlRasterOverviews = QStringLiteral( "SELECT o_table_schema, o_table_name FROM public.raster_overviews" );

QgsPostgresResult resultRasterOverviews;
resultRasterOverviews = LoggedPQexec( "QgsPostgresConn", sqlRasterOverviews );
Expand Down

0 comments on commit 7bd6fea

Please sign in to comment.