Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: miroslavpojer <miroslav.pojer@absa.africa>
  • Loading branch information
benedeki and miroslavpojer authored Oct 17, 2024
1 parent 55213e0 commit 7dfd52b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ case class DBTable(tableName: String) extends DBQuerySupport{
def delete(whereCondition: String = "")(implicit connection: DBConnection): Unit = {
composeDeleteAndRun(strToOption(whereCondition))(_ => ())
}


/**
* Counts the rows in the table.
* @param connection - a database connection used for the SELECT operation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ CREATE TABLE testing.table_lifecycle
);

ALTER TABLE IF EXISTS testing.table_lifecycle
OWNER to mag_owner;
OWNER to mag_owner;

0 comments on commit 7dfd52b

Please sign in to comment.