diff --git a/rdbms/wrapper/SqliteRset.hpp b/rdbms/wrapper/SqliteRset.hpp
index d814bff4c9dffd933550ee9dc0775edac46abaca..e90ac1da26e4039d85658da523d4a7d3d86be451 100644
--- a/rdbms/wrapper/SqliteRset.hpp
+++ b/rdbms/wrapper/SqliteRset.hpp
@@ -57,7 +57,7 @@ public:
    *
    * @return The SQL statement.
    */
-  virtual const std::string &getSql() const override;
+  const std::string &getSql() const override;
 
   /**
    * Attempts to get the next row of the result set.
@@ -65,7 +65,7 @@ public:
    * @return True if a row has been retrieved else false if there are no more
    * rows in the result set.
    */
-  virtual bool next() override;
+  bool next() override;
 
   /**
    * Returns true if the specified column contains a null value.
@@ -73,7 +73,7 @@ public:
    * @param colName The name of the column.
    * @return True if the specified column contains a null value.
    */
-  virtual bool columnIsNull(const std::string &colName) const override;
+  bool columnIsNull(const std::string &colName) const override;
 
   /**
    * Returns the value of the specified column as a string.
@@ -83,7 +83,7 @@ public:
    * @param colName The name of the column.
    * @return The string value of the specified column.
    */
-  virtual optional<std::string> columnOptionalString(const std::string &colName) const override;
+  optional<std::string> columnOptionalString(const std::string &colName) const override;
 
   /**
    * Returns the value of the specified column as an integer.
@@ -93,7 +93,7 @@ public:
    * @param colName The name of the column.
    * @return The value of the specified column.
    */
-  virtual optional<uint64_t> columnOptionalUint64(const std::string &colName) const override;
+  optional<uint64_t> columnOptionalUint64(const std::string &colName) const override;
 
 private: