File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ df = wr.s3.read_parquet("s3://bucket/dataset/", dataset=True)
4343# Retrieving the data from Amazon Athena
4444df = wr.athena.read_sql_query(" SELECT * FROM my_table" , database = " my_db" )
4545
46- # Get Redshift connection (SQLAlchemy) from Glue Catalog and retrieving data from Redshift Spectrum
46+ # Get Redshift connection (SQLAlchemy) from Glue and retrieving data from Redshift Spectrum
4747engine = wr.catalog.get_engine(" my-redshift-connection" )
4848df = wr.db.read_sql_query(" SELECT * FROM external_schema.my_table" , con = engine)
4949
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Quick Start
2525 # Retrieving the data from Amazon Athena
2626 df = wr.athena.read_sql_query("SELECT * FROM my_table", database="my_db")
2727
28- # Get Redshift connection (SQLAlchemy) from Glue Catalog and retrieving data from Redshift Spectrum
28+ # Get Redshift connection (SQLAlchemy) from Glue and retrieving data from Redshift Spectrum
2929 engine = wr.catalog.get_engine("my-redshift-connection")
3030 df = wr.db.read_sql_query("SELECT * FROM external_schema.my_table", con=engine)
3131
You can’t perform that action at this time.
0 commit comments