@@ -38,7 +38,7 @@ def cast(self, compiler, connection, **extra_context):
38
38
A method to extend Django Cast class. Cast SQL query for given
39
39
parameters.
40
40
41
- :type self: :class:`~django.db.models.functions.comparison. Cast`
41
+ :type self: :class:`~django.db.models.functions.Cast`
42
42
:param self: the instance of the class that owns this method.
43
43
44
44
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -71,7 +71,7 @@ def chr_(self, compiler, connection, **extra_context):
71
71
A method to extend Django Chr class. Returns a SQL query where the code
72
72
points are displayed as a string.
73
73
74
- :type self: :class:`~django.db.models.functions.text. Chr`
74
+ :type self: :class:`~django.db.models.functions.Chr`
75
75
:param self: the instance of the class that owns this method.
76
76
77
77
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -101,7 +101,7 @@ def concatpair(self, compiler, connection, **extra_context):
101
101
A method to extend Django ConcatPair class. Concatenates a SQL query
102
102
into the sequence of :class:`IfNull` objects.
103
103
104
- :type self: :class:`~django.db.models.functions.text. ConcatPair`
104
+ :type self: :class:`~django.db.models.functions.ConcatPair`
105
105
:param self: the instance of the class that owns this method.
106
106
107
107
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -132,7 +132,7 @@ def cot(self, compiler, connection, **extra_context):
132
132
A method to extend Django Cot class. Returns a SQL query of calculated
133
133
trigonometric cotangent function.
134
134
135
- :type self: :class:`~django.db.models.functions.math. Cot`
135
+ :type self: :class:`~django.db.models.functions.Cot`
136
136
:param self: the instance of the class that owns this method.
137
137
138
138
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -162,7 +162,7 @@ def degrees(self, compiler, connection, **extra_context):
162
162
A method to extend Django Degress class. Returns a SQL query of the
163
163
angle converted to degrees.
164
164
165
- :type self: :class:`~django.db.models.functions.math. Degrees`
165
+ :type self: :class:`~django.db.models.functions.Degrees`
166
166
:param self: the instance of the class that owns this method.
167
167
168
168
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -190,8 +190,8 @@ def degrees(self, compiler, connection, **extra_context):
190
190
def left_and_right (self , compiler , connection , ** extra_context ):
191
191
"""A method to extend Django Left and Right classes.
192
192
193
- :type self: :class:`~django.db.models.functions.text. Left` or
194
- :class:`~django.db.models.functions.text. Right`
193
+ :type self: :class:`~django.db.models.functions.Left` or
194
+ :class:`~django.db.models.functions.Right`
195
195
:param self: the instance of the class that owns this method.
196
196
197
197
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -216,7 +216,7 @@ def log(self, compiler, connection, **extra_context):
216
216
A method to extend Django Log class. Returns a SQL query of calculated
217
217
logarithm.
218
218
219
- :type self: :class:`~django.db.models.functions.math. Log`
219
+ :type self: :class:`~django.db.models.functions.Log`
220
220
:param self: the instance of the class that owns this method.
221
221
222
222
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -245,7 +245,7 @@ def ord_(self, compiler, connection, **extra_context):
245
245
A method to extend Django Ord class. Returns a SQL query of the
246
246
expression converted to ord.
247
247
248
- :type self: :class:`~django.db.models.functions.text. Ord`
248
+ :type self: :class:`~django.db.models.functions.Ord`
249
249
:param self: the instance of the class that owns this method.
250
250
251
251
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -275,7 +275,7 @@ def pi(self, compiler, connection, **extra_context):
275
275
A method to extend Django Pi class. Returns a SQL query of the Pi
276
276
constant.
277
277
278
- :type self: :class:`~django.db.models.functions.math. Pi`
278
+ :type self: :class:`~django.db.models.functions.Pi`
279
279
:param self: the instance of the class that owns this method.
280
280
281
281
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -302,7 +302,7 @@ def radians(self, compiler, connection, **extra_context):
302
302
A method to extend Django Radians class. Returns a SQL query of the
303
303
angle converted to radians.
304
304
305
- :type self: :class:`~django.db.models.functions.math. Radians`
305
+ :type self: :class:`~django.db.models.functions.Radians`
306
306
:param self: the instance of the class that owns this method.
307
307
308
308
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -332,7 +332,7 @@ def strindex(self, compiler, connection, **extra_context):
332
332
A method to extend Django StrIndex class. Returns a SQL query of the
333
333
string position.
334
334
335
- :type self: :class:`~django.db.models.functions.text. StrIndex`
335
+ :type self: :class:`~django.db.models.functions.StrIndex`
336
336
:param self: the instance of the class that owns this method.
337
337
338
338
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
@@ -359,7 +359,7 @@ def substr(self, compiler, connection, **extra_context):
359
359
A method to extend Django Substr class. Returns a SQL query of a
360
360
substring.
361
361
362
- :type self: :class:`~django.db.models.functions.text. Substr`
362
+ :type self: :class:`~django.db.models.functions.Substr`
363
363
:param self: the instance of the class that owns this method.
364
364
365
365
:type compiler: :class:`~django_spanner.compiler.SQLCompilerst`
0 commit comments