Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
6174f860
Commit
6174f860
authored
6 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Removed redundant 'virtual' keyword from rdbms/wrapper/OcciConn.hpp
parent
63f2b2e0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rdbms/wrapper/OcciConn.hpp
+6
-6
6 additions, 6 deletions
rdbms/wrapper/OcciConn.hpp
with
6 additions
and
6 deletions
rdbms/wrapper/OcciConn.hpp
+
6
−
6
View file @
6174f860
...
...
@@ -58,7 +58,7 @@ public:
/**
* Idempotent close() method. The destructor calls this method.
*/
virtual
void
close
()
override
;
void
close
()
override
;
/**
* Creates a prepared statement.
...
...
@@ -67,17 +67,17 @@ public:
* @param autocommitMode The autocommit mode of the statement.
* @return The prepared statement.
*/
virtual
std
::
unique_ptr
<
Stmt
>
createStmt
(
const
std
::
string
&
sql
,
const
AutocommitMode
autocommitMode
)
override
;
std
::
unique_ptr
<
Stmt
>
createStmt
(
const
std
::
string
&
sql
,
const
AutocommitMode
autocommitMode
)
override
;
/**
* Commits the current transaction.
*/
virtual
void
commit
()
override
;
void
commit
()
override
;
/**
* Rolls back the current transaction.
*/
virtual
void
rollback
()
override
;
void
rollback
()
override
;
/**
* Returns the names of all the tables in the database schema in alphabetical
...
...
@@ -86,7 +86,7 @@ public:
* @return The names of all the tables in the database schema in alphabetical
* order.
*/
virtual
std
::
list
<
std
::
string
>
getTableNames
()
override
;
std
::
list
<
std
::
string
>
getTableNames
()
override
;
/**
* Returns true if this connection is open.
...
...
@@ -103,7 +103,7 @@ public:
* @return The names of all the sequences in the database schema in
* alphabetical order.
*/
virtual
std
::
list
<
std
::
string
>
getSequenceNames
()
override
;
std
::
list
<
std
::
string
>
getSequenceNames
()
override
;
private:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment