Skip to content

Commit

Permalink
Merge branch 'main' into fix/issue-2357-to_parquet-dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
kukushking authored Jul 6, 2023
2 parents 19d2e74 + 6eb8462 commit 95cf1eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ If you would like us to include your company’s name and/or logo in the README
- [Infomach](https://www.infomach.com.br/)
- [Informa Markets](https://www.informamarkets.com/en/home.html) [[@mateusmorato]](http://github.com/mateusmorato)
- [LINE TV](https://www.linetv.tw/) [[@bryanyang0528](https://github.com/bryanyang0528)]
- [LogicalCube](https://www.logicalcube.com) [[@zolabud](https://github.com/zolabud)]
- [Magnataur](https://magnataur.com) [[@brianmingus2](https://github.com/brianmingus2)]
- [M4U](https://www.m4u.com.br/) [[@Thiago-Dantas](https://github.com/Thiago-Dantas)]
- [NBCUniversal](https://www.nbcuniversal.com/) [[@vibe](https://github.com/vibe)]
Expand Down
6 changes: 3 additions & 3 deletions awswrangler/cleanrooms/_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ def read_sql_query(
)["protectedQuery"]["id"]

_logger.debug("query_id: %s", query_id)
path: str = wait_query(membership_id=membership_id, query_id=query_id)["protectedQuery"]["result"]["output"]["s3"][
"location"
]
path: str = wait_query(membership_id=membership_id, query_id=query_id, boto3_session=boto3_session)[
"protectedQuery"
]["result"]["output"]["s3"]["location"]

_logger.debug("path: %s", path)
chunked: Union[bool, int] = False if chunksize is None else chunksize
Expand Down

0 comments on commit 95cf1eb

Please sign in to comment.