From 8ca42e38b3cec03298844b6634b16363673bf825 Mon Sep 17 00:00:00 2001 From: Taavi Burns Date: Fri, 25 Jan 2013 22:48:34 -0500 Subject: [PATCH] Fixing a code block in the PostgreSQL base dialect docstring. --- lib/sqlalchemy/dialects/postgresql/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index d7cfc5b224..3de727e946 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -120,7 +120,7 @@ FROM ONLY ... The dialect supports PostgreSQL's ONLY keyword for targeting only a particular table in an inheritance hierarchy. This can be used to produce the ``SELECT ... FROM ONLY``, ``UPDATE ONLY ...``, and ``DELETE FROM ONLY ...`` -syntaxes. It uses SQLAlchemy's hints mechanism: +syntaxes. It uses SQLAlchemy's hints mechanism:: # SELECT ... FROM ONLY ... result = table.select().with_hint(table, 'ONLY', 'postgresql') -- 2.47.2