Skip to content

Commit

Permalink
Merge branch 'master' of github.com:geoflow3d/gfp-gdal
Browse files Browse the repository at this point in the history
  • Loading branch information
Ylannl committed Jun 5, 2020
2 parents f8915fe + d6aef32 commit aebd823
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gdal_nodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ void OGRWriterNode::process()
GDT_Unknown,
papszOptions);
}
bool do_transactions = poDS->TestCapability("ODsCTransactions");
std::cout << "\nUsing driver: " << poDS->GetDriverName() << "\n";
bool do_transactions = poDS->TestCapability(ODsCTransactions);
std::cout << "Transactions support: " << (do_transactions ? "yes" : "no") << "\n";

if (poDS == nullptr) {
throw(gfException("Creation/Opening of output file failed."));
Expand Down

0 comments on commit aebd823

Please sign in to comment.