Introduce hazelcast::client::decimal [API-1297]#967
Introduce hazelcast::client::decimal [API-1297]#967ihsandemir merged 8 commits intohazelcast:masterfrom
Conversation
|
Windows test FAILed. |
|
Linux test PASSed. |
|
Windows test PASSed. |
|
Linux test PASSed. |
|
Why about adding this to builtin serializers? Currently what do we have for bigdecimal in cpp? If we are going to do it, can you create an issue in Jira to track it? |
I think there is already jira tasks for all missing types in all the languages. See https://hazelcast.atlassian.net/jira/software/projects/API/boards/40/backlog?selectedIssue=API-884&text=serializers |
|
Windows test PASSed. |
|
Linux test PASSed. |
| for (auto& item : a) { | ||
| item = ~item; | ||
| } | ||
| int carry = 1; |
There was a problem hiding this comment.
Can you document what is the purpose of carry?
|
Windows test PASSed. |
|
Linux test PASSed. |
|
Windows test PASSed. |
|
Linux test PASSed. |
|
Windows test PASSed. |
|
Linux test PASSed. |
This class will be used in SQL and in Compact to match with Decimal type on SQL and Compact. a.k.a BigDecimal on java.
|
Linux test PASSed. |
|
Serkan, already approved the PR. Merging the PR. |
|
Windows test PASSed. |
* Introduce hazelcast::client::decimal This class will be used in SQL and in Compact to match with Decimal type on SQL and Compact. a.k.a BigDecimal on java. * add equality operator * rename decimal to big_decimal
This class will be used in SQL and in Compact to match with
Decimal type on SQL and Compact. a.k.a BigDecimal on java.