Skip to content

Commit e5a063a

Browse files
committed
spelling: Postgis -> PostGIS
1 parent 8c2c464 commit e5a063a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/build/changelog/changelog_08.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3189,7 +3189,7 @@
31893189
to augment bind- and result- behavior at the
31903190
SQL level, as opposed to in the Python level.
31913191
Allows for schemes like transparent encryption/
3192-
decryption, usage of Postgis functions, etc.
3192+
decryption, usage of PostGIS functions, etc.
31933193

31943194
.. change::
31953195
:tags: feature, sql

doc/build/core/custom_types.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ possible to define SQL-level transformations as well. The rationale here is whe
338338
only the relational database contains a particular series of functions that are necessary
339339
to coerce incoming and outgoing data between an application and persistence format.
340340
Examples include using database-defined encryption/decryption functions, as well
341-
as stored procedures that handle geographic data. The Postgis extension to PostgreSQL
341+
as stored procedures that handle geographic data. The PostGIS extension to PostgreSQL
342342
includes an extensive array of SQL functions that are necessary for coercing
343343
data into particular formats.
344344

@@ -348,7 +348,7 @@ can include implementations of
348348
when defined to return a non-``None`` value should return a :class:`.ColumnElement`
349349
expression to be injected into the SQL statement, either surrounding
350350
bound parameters or a column expression. For example, to build a ``Geometry``
351-
type which will apply the Postgis function ``ST_GeomFromText`` to all outgoing
351+
type which will apply the PostGIS function ``ST_GeomFromText`` to all outgoing
352352
values and the function ``ST_AsText`` to all incoming data, we can create
353353
our own subclass of :class:`.UserDefinedType` which provides these methods
354354
in conjunction with :data:`~.sqlalchemy.sql.expression.func`::

examples/postgis/postgis.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ class LineString(Curve):
130130

131131

132132
# DDL integration
133-
# Postgis historically has required AddGeometryColumn/DropGeometryColumn
134-
# and other management methods in order to create Postgis columns. Newer
133+
# PostGIS historically has required AddGeometryColumn/DropGeometryColumn
134+
# and other management methods in order to create PostGIS columns. Newer
135135
# versions don't appear to require these special steps anymore. However,
136136
# here we illustrate how to set up these features in any case.
137137

0 commit comments

Comments
 (0)