Skip to content

Commit

Permalink
docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoiv committed Aug 4, 2021
1 parent fbde770 commit 50c6bb1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.6.4] 2021-08-05

### Added
- `insert_into_orc_table` function can now use overwrite option

## [1.6.3] 2021-06-14

### Changed
Expand All @@ -15,7 +20,6 @@ inserting into ORC tables
- Updated river dependency to fix errors when inserting into ORC tables
from tables w/ "invalid" storage paths


## [1.6.2] 2021-05-24

### Changed
Expand Down
2 changes: 1 addition & 1 deletion honeycomb/_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = "honeycomb"
__description__ = "Multi-source/engine querying tool"
__url__ = "https://github.com/neighborhoods/honeycomb"
__version__ = "1.6.3"
__version__ = "1.6.4"
__author__ = "George Wood (@Geoiv)"
__author_email__ = "[email protected]"
2 changes: 2 additions & 0 deletions honeycomb/orc.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ def insert_into_orc_table(table_name, schema, source_table_name, source_schema,
Doing so is discouraged, but if the source table makes use of such
columns and cannot be easily changed, setting this to True will
allow the table to be inserted from
overwrite (bool, default False):
Whether the insert type should be 'INTO' or 'OVERWRITE'
"""
# List of reserved words in Hive that could reasonably be used as column
# names. This list may expand with time
Expand Down

0 comments on commit 50c6bb1

Please sign in to comment.