Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
don't use QUUid::Id128, doesn't exist in Qt 5.9
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/providers/oracle/qgsoracleprovider.cpp
|
@@ -2997,7 +2997,7 @@ QgsVectorLayerExporter::ExportError QgsOracleProvider::createEmptyLayer( |
|
|
// It's not possible to create a table without any column, so we add a fake one |
|
|
// if needed, and will remove it later |
|
|
const QString fakeColumn = geometryColumn.isEmpty() && !hasPrimaryKey ? |
|
|
QString( "fake_column_%1" ).arg( QUuid::createUuid().toString( QUuid::Id128 ) ) : QString(); |
|
|
QString( "fake_column_%1" ).arg( QUuid::createUuid().toString() ) : QString(); |
|
|
|
|
|
try |
|
|
{ |
|
|