summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorDaniele Varrazzo <daniele.varrazzo@gmail.com>2018-07-13 18:17:32 +0100
committerDaniele Varrazzo <daniele.varrazzo@gmail.com>2018-08-18 01:31:40 +0100
commit8444f2315bd5679805e27cce0dd2ae2010591d75 (patch)
tree1df3e42dae947286db64f8d88735befe113f5d11 /doc/src
parent6becf0ef550e8eb0c241c3835b1466eef37b1784 (diff)
downloadpsycopg2-qualified.tar.gz
sql.Identifier can wrap a sequence of strings to represent qualified namesqualified
Close #732.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sql.rst12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/src/sql.rst b/doc/src/sql.rst
index fe807c6..9cd18e7 100644
--- a/doc/src/sql.rst
+++ b/doc/src/sql.rst
@@ -77,16 +77,26 @@ to cursor methods such as `~cursor.execute()`, `~cursor.executemany()`,
.. autoclass:: Identifier
- .. autoattribute:: string
+ .. versionchanged:: 2.8
+ added support for multiple strings.
+
+ .. autoattribute:: strings
+
+ .. versionadded:: 2.8
+ previous verions only had a `!string` attribute. The attribute
+ still exists but is deprecate and will only work if the
+ `!Identifier` wraps a single string.
.. autoclass:: Literal
.. autoattribute:: wrapped
+
.. autoclass:: Placeholder
.. autoattribute:: name
+
.. autoclass:: Composed
.. autoattribute:: seq