We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 032d64f commit fa86b70Copy full SHA for fa86b70
package/cpp/sqliteExecuteBatch.cpp
@@ -25,7 +25,7 @@ std::vector<BatchQuery> batchParamsToCommands(const std::vector<BatchQueryComman
25
commands.push_back(BatchQuery{command.query, std::move(std::get<ParamsVec>(*command.params))});
26
}
27
} else {
28
- commands.push_back(BatchQuery{command.query, NULL});
+ commands.push_back(BatchQuery{command.query, std::nullopt});
29
30
31
0 commit comments