Skip to content

Commit

Permalink
Removed extra verbosity that wasn't needed (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
arosychuk authored Mar 21, 2022
1 parent 31dcc04 commit 703ecc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbt/adapters/vertica/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def get_response(cls, cursor):
operation = cursor.operation

return AdapterResponse(
_message="Operation: {}, Message: {}, Code: {}, Rows: {}, Arraysize: {}".format(operation, message, str(code), rows, arraysize),
_message="Code: {}, Rows: {}, Array Size: {}".format(str(code), rows, arraysize),
rows_affected=rows,
code=str(code)
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pathlib

package_name = "dbt-vertica"
package_version = "1.0.3"
package_version = "1.0.3.1"
description = """The vertica adapter plugin for dbt (data build tool)"""

HERE = pathlib.Path(__file__).parent
Expand Down

0 comments on commit 703ecc7

Please sign in to comment.