Skip to content

Commit 88586a1

Browse files
committed
rebase to feature branch
2 parents d8c5c81 + b1c17f7 commit 88586a1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+4730
-69218
lines changed

FirebaseFirestoreInternal.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
128128
'"${PODS_TARGET_SRCROOT}/Firestore/Source/Public" ' +
129129
'"${PODS_ROOT}/nanopb" ' +
130130
'"${PODS_TARGET_SRCROOT}/Firestore/Protos/nanopb" ' +
131-
'"$(PODS_ROOT)/gRPC-C++/third_party/re2"'
131+
'"${PODS_TARGET_SRCROOT}/Firestore/third_party/re2" '
132132
}
133133

134134
s.compiler_flags = '$(inherited) -Wreorder -Werror=reorder -Wno-comma'

FirebaseMessaging/Sources/FIRMessagingRmqManager.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ - (void)openDatabase {
501501
#ifdef SQLITE_OPEN_FILEPROTECTION_NONE
502502
flags |= SQLITE_OPEN_FILEPROTECTION_NONE;
503503
#endif
504-
int result = sqlite3_open_v2([path UTF8String], &self -> _database, flags, NULL);
504+
int result = sqlite3_open_v2([path UTF8String], &self->_database, flags, NULL);
505505
if (result != SQLITE_OK) {
506506
NSString *errorString = FIRMessagingStringFromSQLiteResult(result);
507507
NSString *errorMessage = [NSString
@@ -522,7 +522,7 @@ - (void)openDatabase {
522522
#ifdef SQLITE_OPEN_FILEPROTECTION_NONE
523523
flags |= SQLITE_OPEN_FILEPROTECTION_NONE;
524524
#endif
525-
int result = sqlite3_open_v2([path UTF8String], &self -> _database, flags, NULL);
525+
int result = sqlite3_open_v2([path UTF8String], &self->_database, flags, NULL);
526526
if (result != SQLITE_OK) {
527527
NSString *errorString = FIRMessagingStringFromSQLiteResult(result);
528528
NSString *errorMessage =

Firestore/Example/Tests/SpecTests/json/index_spec_test.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@
7171
"readTime": {
7272
"timestamp": {
7373
"nanoseconds": 0,
74-
"seconds": 0
74+
"seconds": 0,
75+
"type": "firestore/timestamp/1.0"
7576
}
7677
}
7778
},
@@ -115,7 +116,8 @@
115116
"readTime": {
116117
"timestamp": {
117118
"nanoseconds": 0,
118-
"seconds": 0
119+
"seconds": 0,
120+
"type": "firestore/timestamp/1.0"
119121
}
120122
}
121123
},
@@ -192,7 +194,8 @@
192194
"readTime": {
193195
"timestamp": {
194196
"nanoseconds": 0,
195-
"seconds": 0
197+
"seconds": 0,
198+
"type": "firestore/timestamp/1.0"
196199
}
197200
}
198201
},
@@ -236,7 +239,8 @@
236239
"readTime": {
237240
"timestamp": {
238241
"nanoseconds": 0,
239-
"seconds": 0
242+
"seconds": 0,
243+
"type": "firestore/timestamp/1.0"
240244
}
241245
}
242246
},

0 commit comments

Comments
 (0)