@@ -8,7 +8,7 @@ from rethinkdb import ast as ast_module
8
8
from rethinkdb import errors as errors_module
9
9
from rethinkdb import net as net_module
10
10
from rethinkdb import query as query_module
11
- from rethinkdb .ast import ReqlBinary , ReqlQuery , ReqlTzinfo
11
+ from rethinkdb .ast import RqlBinary , ReqlQuery , ReqlTzinfo
12
12
from rethinkdb .errors import (
13
13
InvalidHandshakeStateError ,
14
14
QueryPrinter ,
@@ -24,7 +24,7 @@ from rethinkdb.errors import (
24
24
ReqlOpIndeterminateError ,
25
25
ReqlOperationError ,
26
26
ReqlPermissionError ,
27
- ReqlQueryLogicError ,
27
+ RqlQueryLogicError ,
28
28
ReqlResourceLimitError ,
29
29
ReqlRuntimeError ,
30
30
ReqlServerCompileError ,
@@ -54,7 +54,7 @@ class RethinkDB:
54
54
bytes(int) -> bytes object of size given by the parameter initialized with null bytes
55
55
bytes() -> empty bytes object
56
56
"""
57
- ReqlQuery : Type [ReqlQuery ] = ...
57
+ RqlQuery : Type [ReqlQuery ] = ...
58
58
"""
59
59
The RethinkDB Query object which determines the operations we can request
60
60
from the server.
@@ -68,7 +68,7 @@ class RethinkDB:
68
68
Union [
69
69
str ,
70
70
bytes ,
71
- ReqlQuery ,
71
+ RqlQuery ,
72
72
ReqlBinary ,
73
73
datetime .date ,
74
74
datetime .datetime ,
@@ -78,7 +78,7 @@ class RethinkDB:
78
78
],
79
79
int ,
80
80
],
81
- ReqlQuery ,
81
+ RqlQuery ,
82
82
] = ...
83
83
"""
84
84
Convert a Python primitive into a Reql primitive value.
@@ -145,7 +145,7 @@ class RethinkDB:
145
145
"""
146
146
Exception indicates that the connected user has no permission to execute the query.
147
147
"""
148
- ReqlQueryLogicError : Type [ReqlQueryLogicError ] = ...
148
+ RqlQueryLogicError : Type [ReqlQueryLogicError ] = ...
149
149
"""
150
150
Exception indicates that the query is syntactically correct, but not it has some
151
151
logical errors.
@@ -242,7 +242,7 @@ class RethinkDB:
242
242
"""
243
243
AND function.
244
244
"""
245
- april : ReqlQuery = ...
245
+ april : RqlQuery = ...
246
246
"""
247
247
Rethinkdb constant.
248
248
Maps a real world constant to a representation for the db.
@@ -259,7 +259,7 @@ class RethinkDB:
259
259
ordering, wrap the attribute with either r.asc or r.desc (defaults to
260
260
ascending).
261
261
"""
262
- august : ReqlQuery = ...
262
+ august : RqlQuery = ...
263
263
"""
264
264
Rethinkdb constant.
265
265
Maps a real world constant to a representation for the db.
@@ -273,7 +273,7 @@ class RethinkDB:
273
273
elements of the sequence where that function returns None or a non-existence
274
274
error.
275
275
"""
276
- binary : Callable [[bytes ], ReqlQuery ] = ...
276
+ binary : Callable [[bytes ], RqlQuery ] = ...
277
277
"""
278
278
Binary function.
279
279
"""
@@ -355,7 +355,7 @@ class RethinkDB:
355
355
"""
356
356
List all database names in the system. The result is a list of strings.
357
357
"""
358
- december : ReqlQuery = ...
358
+ december : RqlQuery = ...
359
359
"""
360
360
Rethinkdb constant.
361
361
Maps a real world constant to a representation for the db.
@@ -397,7 +397,7 @@ class RethinkDB:
397
397
Throw a runtime error. If called with no arguments inside the second
398
398
argument to default, re-throw the current error.
399
399
"""
400
- february : ReqlQuery = ...
400
+ february : RqlQuery = ...
401
401
"""
402
402
Rethinkdb constant.
403
403
Maps a real world constant to a representation for the db.
@@ -413,7 +413,7 @@ class RethinkDB:
413
413
object, otherwise, an error raised. The template must be a string literal
414
414
and cannot be the result of other commands.
415
415
"""
416
- friday : ReqlQuery = ...
416
+ friday : RqlQuery = ...
417
417
"""
418
418
Rethinkdb constant.
419
419
Maps a real world constant to a representation for the db.
@@ -460,7 +460,7 @@ class RethinkDB:
460
460
"""
461
461
ISO8601 function.
462
462
"""
463
- january : ReqlQuery = ...
463
+ january : RqlQuery = ...
464
464
"""
465
465
Rethinkdb constant.
466
466
Maps a real world constant to a representation for the db.
@@ -473,12 +473,12 @@ class RethinkDB:
473
473
"""
474
474
Transform *arguments parameters into JSON.
475
475
"""
476
- july : ReqlQuery = ...
476
+ july : RqlQuery = ...
477
477
"""
478
478
Rethinkdb constant.
479
479
Maps a real world constant to a representation for the db.
480
480
"""
481
- june : ReqlQuery = ...
481
+ june : RqlQuery = ...
482
482
"""
483
483
Rethinkdb constant.
484
484
Maps a real world constant to a representation for the db.
@@ -511,7 +511,7 @@ class RethinkDB:
511
511
function to them. If map is run with two or more sequences, it will
512
512
iterate for as many items as there are in the shortest sequence.
513
513
"""
514
- march : ReqlQuery = ...
514
+ march : RqlQuery = ...
515
515
"""
516
516
Rethinkdb constant.
517
517
Maps a real world constant to a representation for the db.
@@ -520,12 +520,12 @@ class RethinkDB:
520
520
"""
521
521
Finds the maximum element of a sequence.
522
522
"""
523
- maxval : ReqlQuery = ...
523
+ maxval : RqlQuery = ...
524
524
"""
525
525
Rethinkdb constant.
526
526
Maps a real world constant to a representation for the db.
527
527
"""
528
- may : ReqlQuery = ...
528
+ may : RqlQuery = ...
529
529
"""
530
530
Rethinkdb constant.
531
531
Maps a real world constant to a representation for the db.
@@ -534,7 +534,7 @@ class RethinkDB:
534
534
"""
535
535
Finds the minimum element of a sequence.
536
536
"""
537
- minval : ReqlQuery = ...
537
+ minval : RqlQuery = ...
538
538
"""
539
539
Rethinkdb constant.
540
540
Maps a real world constant to a representation for the db.
@@ -543,7 +543,7 @@ class RethinkDB:
543
543
"""
544
544
Module function.
545
545
"""
546
- monday : ReqlQuery = ...
546
+ monday : RqlQuery = ...
547
547
"""
548
548
Rethinkdb constant.
549
549
Maps a real world constant to a representation for the db.
@@ -560,7 +560,7 @@ class RethinkDB:
560
560
"""
561
561
Not function.
562
562
"""
563
- november : ReqlQuery = ...
563
+ november : RqlQuery = ...
564
564
"""
565
565
Rethinkdb constant.
566
566
Maps a real world constant to a representation for the db.
@@ -575,7 +575,7 @@ class RethinkDB:
575
575
strings. r.object(A, B, C, D) is equivalent to
576
576
r.expr([[A, B], [C, D]]).coerce_to('OBJECT').
577
577
"""
578
- october : ReqlQuery = ...
578
+ october : RqlQuery = ...
579
579
"""
580
580
Rethinkdb constant.
581
581
Maps a real world constant to a representation for the db.
@@ -612,13 +612,13 @@ class RethinkDB:
612
612
"""
613
613
Round function.
614
614
"""
615
- row : ReqlQuery = ...
616
- saturday : ReqlQuery = ...
615
+ row : RqlQuery = ...
616
+ saturday : RqlQuery = ...
617
617
"""
618
618
Rethinkdb constant.
619
619
Maps a real world constant to a representation for the db.
620
620
"""
621
- september : ReqlQuery = ...
621
+ september : RqlQuery = ...
622
622
"""
623
623
Rethinkdb constant.
624
624
Maps a real world constant to a representation for the db.
@@ -635,7 +635,7 @@ class RethinkDB:
635
635
every element of the sequence and sums the results, skipping elements of
636
636
the sequence where that function returns None or a non-existence error.
637
637
"""
638
- sunday : ReqlQuery = ...
638
+ sunday : RqlQuery = ...
639
639
"""
640
640
Rethinkdb constant.
641
641
Maps a real world constant to a representation for the db.
@@ -658,7 +658,7 @@ class RethinkDB:
658
658
"""
659
659
List all table names in a database. The result is a list of strings.
660
660
"""
661
- thursday : ReqlQuery = ...
661
+ thursday : RqlQuery = ...
662
662
"""
663
663
Rethinkdb constant.
664
664
Maps a real world constant to a representation for the db.
@@ -667,7 +667,7 @@ class RethinkDB:
667
667
"""
668
668
Time function.
669
669
"""
670
- tuesday : ReqlQuery = ...
670
+ tuesday : RqlQuery = ...
671
671
"""
672
672
Rethinkdb constant.
673
673
Maps a real world constant to a representation for the db.
@@ -686,7 +686,7 @@ class RethinkDB:
686
686
a unique ID. If a string is passed to uuid as an argument, the UUID will be
687
687
deterministic, derived from the string's SHA-1 hash.
688
688
"""
689
- wednesday : ReqlQuery = ...
689
+ wednesday : RqlQuery = ...
690
690
"""
691
691
Rethinkdb constant.
692
692
Maps a real world constant to a representation for the db.
0 commit comments