Skip to content

Commit 3e58fa3

Browse files
committed
Improving the Quick Start example in the docs (again)
1 parent 583a6e5 commit 3e58fa3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ df = wr.s3.read_parquet("s3://bucket/dataset/", dataset=True)
5353
df = 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
5859
df = wr.db.read_sql_query("SELECT * FROM external_schema.my_table", con=engine)
5960
```

docs/source/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)