This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 5691869bec IGNITE-22791 Fix marshaller spelling (#4127)
5691869bec is described below
commit 5691869bec86fd11e1fd8f77e8dfd2c0be194f28
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Wed Jul 24 10:29:38 2024 +0300
IGNITE-22791 Fix marshaller spelling (#4127)
---
docs/_docs/developers-guide/clients/cpp.adoc | 2 +-
...croBenchmark.java => UpdateCommandsMarshallingMicroBenchmark.java} | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/_docs/developers-guide/clients/cpp.adoc
b/docs/_docs/developers-guide/clients/cpp.adoc
index c929614fcb..c7d5b9e2cc 100644
--- a/docs/_docs/developers-guide/clients/cpp.adoc
+++ b/docs/_docs/developers-guide/clients/cpp.adoc
@@ -244,7 +244,7 @@ There are limitations to user types that can be used for
such a mapping. Some li
- Fields should be mapped to Ignite types;
- All fields in user type should either be mapped to Table column or
explicitly excluded;
- All columns from Table should be mapped to some field in the user type;
-- *C++ only*: User has to provide marshaling functions explicitly as there is
no reflection to generate them based on user type structure.
+- *C++ only*: User has to provide marshalling functions explicitly as there is
no reflection to generate them based on user type structure.
=== Usage Examples
diff --git
a/modules/table/src/test/java/org/apache/ignite/internal/benchmarks/UpdateCommandsMarshalingMicroBenchmark.java
b/modules/table/src/test/java/org/apache/ignite/internal/benchmarks/UpdateCommandsMarshallingMicroBenchmark.java
similarity index 97%
rename from
modules/table/src/test/java/org/apache/ignite/internal/benchmarks/UpdateCommandsMarshalingMicroBenchmark.java
rename to
modules/table/src/test/java/org/apache/ignite/internal/benchmarks/UpdateCommandsMarshallingMicroBenchmark.java
index cbd6f4caa5..f55be29e5b 100644
---
a/modules/table/src/test/java/org/apache/ignite/internal/benchmarks/UpdateCommandsMarshalingMicroBenchmark.java
+++
b/modules/table/src/test/java/org/apache/ignite/internal/benchmarks/UpdateCommandsMarshallingMicroBenchmark.java
@@ -62,7 +62,7 @@ import org.openjdk.jmh.runner.options.OptionsBuilder;
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
@State(Scope.Thread)
-public class UpdateCommandsMarshalingMicroBenchmark {
+public class UpdateCommandsMarshallingMicroBenchmark {
private static final PartitionReplicationMessagesFactory
PARTITION_REPLICATION_MESSAGES_FACTORY =
new PartitionReplicationMessagesFactory();
@@ -151,7 +151,7 @@ public class UpdateCommandsMarshalingMicroBenchmark {
public static void main(String[] args) throws Exception {
Options build = new OptionsBuilder()
// .addProfiler("gc")
-
.include(UpdateCommandsMarshalingMicroBenchmark.class.getName() + ".*").build();
+
.include(UpdateCommandsMarshallingMicroBenchmark.class.getName() +
".*").build();
new Runner(build).run();
}