This is an automated email from the ASF dual-hosted git repository.
craigrueda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 6237cea [docs] add postgres documentation (#9766)
6237cea is described below
commit 6237cea95224903ea79aa82350dd7a175a120970
Author: ʈᵃᵢ <[email protected]>
AuthorDate: Thu May 7 12:17:37 2020 -0700
[docs] add postgres documentation (#9766)
---
docs/installation.rst | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/docs/installation.rst b/docs/installation.rst
index baa14a6..c6a7c37 100644
--- a/docs/installation.rst
+++ b/docs/installation.rst
@@ -417,6 +417,16 @@ existence of a functional SqlAlchemy dialect and Python
driver. Googling
the keyword ``sqlalchemy`` in addition of a keyword that describes the
database you want to connect to should get you to the right place.
+PostgreSQL
+------------
+
+The connection string for PostgreSQL looks like this ::
+
+ postgresql+psycopg2://{username}:{password}@{host}:{port}/{database}
+
+See `psycopg2 SQLAlchemy
<https://docs.sqlalchemy.org/en/13/dialects/postgresql.html#module-sqlalchemy.dialects.postgresql.psycopg2>`_.
+
+
Hana
------------