Skip to content
Snippets Groups Projects
Commit 6e231c5c authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'coverity.RelationalCollection-20170903' into 'master'

RelationalCollection: Coverity warnings 113201 113311 113196 113272 113198 113314

See merge request !4399
parents 758f895e 7c42b28b
No related merge requests found
......@@ -71,6 +71,9 @@ namespace pool {
/// Default destructor.
~RelationalCollection();
RelationalCollection (const RelationalCollection&) = delete;
RelationalCollection& operator= (const RelationalCollection&) = delete;
/// Returns the open mode of the collection for the present transaction.
virtual ICollection::OpenMode openMode() const;
......
......@@ -72,6 +72,9 @@ namespace pool {
*/
~RelationalCollectionDataEditor();
RelationalCollectionDataEditor (const RelationalCollectionDataEditor&) = delete;
RelationalCollectionDataEditor& operator= (const RelationalCollectionDataEditor&) = delete;
/**
* Sets the number of rows to cache before insertion into the collection. If the input
* argument is 0 (the default) bulk row insertion will not be applied.
......
......@@ -66,6 +66,9 @@ namespace pool {
/// Default constructor.
~RelationalCollectionSchemaEditor();
RelationalCollectionSchemaEditor (const RelationalCollectionSchemaEditor&) = delete;
RelationalCollectionSchemaEditor& operator= (const RelationalCollectionSchemaEditor&) = delete;
/**
* Sets the name of the event reference Token column. Otherwise a default name is used.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment