Skip to content

Commit

Permalink
Merge pull request #30 from dataiku/bug/dss13-sc-219621-tableau-plugi…
Browse files Browse the repository at this point in the history
…n-hyper-export-and-upload-not

Bug/dss13 sc 219621 table missing in hyper file produced when a lot of columns
  • Loading branch information
liamlynch-data authored Dec 17, 2024
2 parents 062e944 + fc3e5ea commit 64494f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [Version 0.2.6](https://github.com/dataiku/dss-plugin-tableau-hyper/releases/tag/v0.2.6) - Bugfix release - 2024-12-17

- Fix: For datasets with large numbers of columns and rows the export/upload hyper file did not contain the table exported. This led to the failure of uploads to Tableau and the export of unusable hyper files.

## [Version 0.2.5](https://github.com/dataiku/dss-plugin-tableau-hyper/releases/tag/v0.2.5) - Feature release - 2024-06-04

Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "tableau-hyper-export",
"version": "0.2.5",
"version": "0.2.6",
"meta": {
"label": "Tableau Hyper format",
"description": "Export datasets to Tableau .hyper format.",
Expand Down
2 changes: 1 addition & 1 deletion python-lib/tableau_table_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def close(self):
logger.warning("Failed to perform writing on the last rows")
raise err
finally:
self.hyper.close()
self.connection.close()
self.hyper.close()
logger.info("Closed export")
return True

0 comments on commit 64494f5

Please sign in to comment.