You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ib...@apache.org on 2022/06/02 10:37:38 UTC

[ignite-3] branch main updated (8399fa4ee -> 1002c766b)

This is an automated email from the ASF dual-hosted git repository.

ibessonov pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


    from 8399fa4ee IGNITE-17071 Fix netty buffer leak in MarshallableTest (#844)
     add 1002c766b IGNITE-17044 [Native Persistence 3.0] End-to-end test for in-memory PageMemory (#831)

No new revisions were added by this update.

Summary of changes:
 examples/README.md                                 |  15 +-
 .../ignite/example/AbstractExamplesTest.java       |  13 +-
 .../apache/ignite/example/ExampleTestUtils.java    |  14 +-
 .../ignite/example/sql/jdbc/ItSqlExamplesTest.java |   5 +-
 .../ItVolatilePageMemoryStorageExampleTest.java    |  48 +++++++
 .../ignite/example/table/ItTableExamplesTest.java  |  11 +-
 .../example/tx/ItTransactionsExamplesTest.java     |   5 +-
 .../ignite/example/rebalance/RebalanceExample.java |  17 ++-
 .../ignite/example/sql/jdbc/SqlJdbcExample.java    |  12 ++
 .../storage/VolatilePageMemoryStorageExample.java  | 158 +++++++++++++++++++++
 .../ignite/example/table/KeyValueViewExample.java  |  12 ++
 .../example/table/KeyValueViewPojoExample.java     |  12 ++
 .../ignite/example/table/RecordViewExample.java    |  12 ++
 .../example/table/RecordViewPojoExample.java       |  12 ++
 .../ignite/example/tx/TransactionsExample.java     |  12 ++
 .../schemas/table/TablesConfigurationSchema.java   |   4 +-
 modules/cli/README.md                              |   7 +-
 modules/runner/pom.xml                             |  10 ++
 modules/sql-engine/pom.xml                         |   6 +
 .../internal/storage/DataStorageManagerTest.java   |   5 +-
 .../pagememory/PageMemoryStorageEngine.java        |  58 +++++---
 modules/table/pom.xml                              |  11 +-
 .../ignite/internal/table/TableManagerTest.java    |  47 +++---
 parent/pom.xml                                     |   6 +
 24 files changed, 429 insertions(+), 83 deletions(-)
 create mode 100644 examples/src/integrationTest/java/org/apache/ignite/example/storage/ItVolatilePageMemoryStorageExampleTest.java
 create mode 100644 examples/src/main/java/org/apache/ignite/example/storage/VolatilePageMemoryStorageExample.java