File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ df = wr.s3.read_parquet("s3://bucket/dataset/", dataset=True)
5353df = wr.athena.read_sql_query(" SELECT * FROM my_table" , database = " my_db" )
5454
5555# Getting Redshift connection (SQLAlchemy) from Glue Catalog Connections
56- engine = wr.catalog.get_engine(" aws-data-wrangler-redshift" )
56+ engine = wr.catalog.get_engine(" my-redshift-connection" )
57+
5758# Retrieving the data from Amazon Redshift Spectrum
5859df = wr.db.read_sql_query(" SELECT * FROM external_schema.my_table" , con = engine)
5960```
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ Quick Start
2828 df = wr.athena.read_sql_query("SELECT * FROM my_table", database="my_db")
2929
3030 # Getting Redshift connection (SQLAlchemy) from Glue Catalog Connections
31- engine = wr.catalog.get_engine("aws-data-wrangler-redshift")
31+ engine = wr.catalog.get_engine("my-redshift-connection")
32+
3233 # Retrieving the data from Amazon Redshift Spectrum
3334 df = wr.db.read_sql_query("SELECT * FROM external_schema.my_table", con=engine)
3435
You can’t perform that action at this time.
0 commit comments