Skip to content

Commit 970c4fd

Browse files
authored
[bindgen] Expose Obj::add_int() (#7797)
* Expose 'add_int()'. * Add CHANGELOG entry.
1 parent d4ec79b commit 970c4fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# NEXT RELEASE
22

33
### Enhancements
4-
* <New feature description> (PR [#????](https://github.com/realm/realm-core/pull/????))
54
* It is no longer an error to set a base url for an App with a trailing slash - for example, `https://services.cloud.mongodb.com/` instead of `https://services.cloud.mongodb.com` - before this change that would result in a 404 error from the server ([PR #7791](https://github.com/realm/realm-core/pull/7791)).
65
* Performance has been improved for range queries on integers and timestamps. Requires that you use the "BETWEEN" operation in MQL or the Query::between() method when you build the query. (PR [#7785](https://github.com/realm/realm-core/pull/7785))
7-
* None.
6+
* Expose `Obj::add_int()` in the bindgen spec. ([PR #7797](https://github.com/realm/realm-core/pull/7797)).
87

98
### Fixed
109
* <How do the end-user experience this issue? what was the impact?> ([#????](https://github.com/realm/realm-core/issues/????), since v?.?.?)

bindgen/spec.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,6 +808,7 @@ classes:
808808
- sig: '(column: ColKey, value: Mixed, is_default: bool)'
809809
suffix: with_default
810810
set_collection: '(column: ColKey, type: CollectionType) -> Obj'
811+
add_int: '(column: ColKey, value: int64_t) -> Obj'
811812
get_linked_object: '(column: ColKey) const -> Nullable<Obj>'
812813
to_string: () const -> std::string
813814
get_backlink_count: '() const -> count_t'

0 commit comments

Comments
 (0)