Skip to content

Commit

Permalink
Allow missing values (implicit null)
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsenko committed Jun 27, 2024
1 parent d5def5f commit cd1d925
Show file tree
Hide file tree
Showing 14 changed files with 336 additions and 564 deletions.
14 changes: 6 additions & 8 deletions packages/realm_dart/example/bin/myapp.realm.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/realm_dart/src/realm-core
Submodule realm-core updated 84 files
+1 −1 .github/workflows/prepare-release.yml
+1 −1 .gitignore
+31 −0 CHANGELOG.md
+0 −1 Package.swift
+68 −1 evergreen/config.yml
+5 −1 src/external/bson/CMakeLists.txt
+14 −22 src/realm/alloc.cpp
+18 −37 src/realm/alloc.hpp
+31 −80 src/realm/alloc_slab.cpp
+3 −15 src/realm/alloc_slab.hpp
+21 −20 src/realm/db.cpp
+2 −7 src/realm/db.hpp
+3 −3 src/realm/exec/realm_decrypt.cpp
+38 −25 src/realm/exec/realm_trawler.cpp
+0 −4 src/realm/group.cpp
+3 −3 src/realm/group_writer.cpp
+3 −0 src/realm/group_writer.hpp
+0 −1 src/realm/node_header.hpp
+1 −1 src/realm/object-store/impl/realm_coordinator.cpp
+1 −1 src/realm/object-store/impl/realm_coordinator.hpp
+15 −13 src/realm/object-store/sync/sync_session.cpp
+1 −1 src/realm/object-store/sync/sync_session.hpp
+1 −0 src/realm/query_engine.hpp
+97 −68 src/realm/replication.cpp
+59 −76 src/realm/replication.hpp
+5 −0 src/realm/sync/client.cpp
+1 −0 src/realm/sync/config.hpp
+15 −5 src/realm/sync/noinst/client_impl_base.cpp
+2 −0 src/realm/sync/noinst/client_impl_base.hpp
+43 −32 src/realm/sync/noinst/client_reset.cpp
+1 −1 src/realm/sync/noinst/pending_bootstrap_store.cpp
+0 −33 src/realm/sync/noinst/server/access_token.cpp
+0 −1 src/realm/sync/noinst/server/server.cpp
+0 −1 src/realm/sync/tools/print_changeset.cpp
+3 −11 src/realm/table.cpp
+0 −3 src/realm/table.hpp
+0 −3 src/realm/transaction.cpp
+35 −44 src/realm/util/aes_cryptor.hpp
+670 −707 src/realm/util/encrypted_file_mapping.cpp
+98 −118 src/realm/util/encrypted_file_mapping.hpp
+206 −361 src/realm/util/file.cpp
+81 −245 src/realm/util/file.hpp
+92 −751 src/realm/util/file_mapper.cpp
+21 −131 src/realm/util/file_mapper.hpp
+1 −10 src/realm/util/load_file.cpp
+0 −1 src/realm/util/load_file.hpp
+32 −32 src/realm/util/safe_int_ops.hpp
+6 −10 src/realm/utilities.hpp
+1 −0 test/fuzz_group.cpp
+4 −4 test/object-store/sync/client_reset.cpp
+33 −7 test/object-store/sync/flx_migration.cpp
+6 −6 test/object-store/sync/flx_schema_migration.cpp
+6 −4 test/object-store/sync/flx_sync.cpp
+1 −1 test/object-store/sync/metadata.cpp
+1 −3 test/object-store/sync/sync_manager.cpp
+1 −0 test/object-store/thread_safe_reference.cpp
+1 −4 test/object-store/transaction_log_parsing.cpp
+2 −2 test/object-store/util/sync/baas_admin_api.cpp
+2 −2 test/object-store/util/test_utils.hpp
+5 −1 test/realm-fuzzer/fuzz_configurator.cpp
+4 −1 test/realm-fuzzer/fuzz_configurator.hpp
+0 −27 test/stitch_private.pem
+0 −9 test/stitch_public.pem
+0 −15 test/test_all.cpp
+2 −7 test/test_alloc.cpp
+6 −5 test/test_client_reset.cpp
+1 −0 test/test_compaction.cpp
+462 −228 test/test_encrypted_file_mapping.cpp
+122 −186 test/test_file.cpp
+2 −2 test/test_group.cpp
+1 −1 test/test_json.cpp
+333 −0 test/test_replication.cpp
+8 −13 test/test_shared.cpp
+0 −34 test/test_sync_auth.cpp
+0 −121 test/test_table_helper.hpp
+0 −178 test/test_transactions.cpp
+22 −21 test/test_transform.cpp
+2 −2 test/test_upgrade_database.cpp
+2 −2 test/test_util_logger.cpp
+0 −9 test/tsan.suppress
+1 −0 test/util/spawned_process.cpp
+6 −2 test/util/test_path.hpp
+19 −4 tools/release-init.sh
+1 −0 tools/run-in-simulator.sh
41 changes: 13 additions & 28 deletions packages/realm_dart/test/backlinks_test.realm.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/realm_dart/test/dynamic_realm_test.realm.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 11 additions & 22 deletions packages/realm_dart/test/geospatial_test.realm.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions packages/realm_dart/test/indexed_test.realm.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions packages/realm_dart/test/migration_test.realm.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 26 additions & 46 deletions packages/realm_dart/test/realm_map_test.realm.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cd1d925

Please sign in to comment.