google-cloud-firestore-v1 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7922ef0b53adb9cf8c05dea972dc77df76ca049be8d888ebb3070f86520eeba
|
4
|
+
data.tar.gz: aafccc0aa33cc527e926d2b16696bb2f8d24551e8871d7d604873646d2bd060d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae9b1fb54e5792c92296df31b1e1184e2f83a390761ee4f5b6476984e95a2c1c19141e097cefc778c6ab0169bbd3e02ffa89f93f85793f047a65bad7e17d21bc
|
7
|
+
data.tar.gz: f37cc1e8425e89cfac0569fbf52146ff9e8b1ef36d778ca439a14ba13c564bd2de7886b975cf629de4cd8df52ab3cb847138404aefc5ff7e59afaa4599665943
|
@@ -35,22 +35,24 @@ module Google
|
|
35
35
|
# @return [::Array<::Google::Cloud::Firestore::V1::StructuredQuery::Order>]
|
36
36
|
# The order to apply to the query results.
|
37
37
|
#
|
38
|
-
# Firestore
|
38
|
+
# Firestore allows callers to provide a full ordering, a partial ordering, or
|
39
|
+
# no ordering at all. In all cases, Firestore guarantees a stable ordering
|
40
|
+
# through the following rules:
|
39
41
|
#
|
40
|
-
# *
|
41
|
-
#
|
42
|
-
#
|
42
|
+
# * The `order_by` is required to reference all fields used with an
|
43
|
+
# inequality filter.
|
44
|
+
# * All fields that are required to be in the `order_by` but are not already
|
45
|
+
# present are appended in lexicographical ordering of the field name.
|
43
46
|
# * If an order on `__name__` is not specified, it is appended by default.
|
44
47
|
#
|
45
48
|
# Fields are appended with the same sort direction as the last order
|
46
49
|
# specified, or 'ASCENDING' if no order was specified. For example:
|
47
50
|
#
|
48
|
-
# * `
|
49
|
-
#
|
50
|
-
# * `
|
51
|
-
#
|
52
|
-
#
|
53
|
-
# `SELECT * FROM Foo WHERE A > 1 ORDER BY A, __name__`
|
51
|
+
# * `ORDER BY a` becomes `ORDER BY a ASC, __name__ ASC`
|
52
|
+
# * `ORDER BY a DESC` becomes `ORDER BY a DESC, __name__ DESC`
|
53
|
+
# * `WHERE a > 1` becomes `WHERE a > 1 ORDER BY a ASC, __name__ ASC`
|
54
|
+
# * `WHERE __name__ > ... AND a > 1` becomes
|
55
|
+
# `WHERE __name__ > ... AND a > 1 ORDER BY a ASC, __name__ ASC`
|
54
56
|
# @!attribute [rw] start_at
|
55
57
|
# @return [::Google::Cloud::Firestore::V1::Cursor]
|
56
58
|
# A starting point for the query results.
|
@@ -26,8 +26,6 @@ module Google
|
|
26
26
|
# service Foo {
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
28
28
|
# }
|
29
|
-
#
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
29
|
class Empty
|
32
30
|
include ::Google::Protobuf::MessageExts
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-firestore-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|