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

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


 discard 73176e2  IGNITE-14389 Implemented conditional update (invoke)
 discard c465eff  IGNITE-14389 Implemented cursor for ranges and watches.
 discard ee2c7ad  IGNITE-14389 Added putAll and removeAll. Started cursor 
management: ranges and watches (WIP)
 discard 9bd4087  IGNITE-14389 putAll initial (WIP)
 discard c6932ea  IGNITE-14389 getAll and tests (WIP)
 discard 52271be  IGNITE-14389 Added get and do smth semantic
 discard a58026e  IGNITE-14398: Meta storage: added update counter
 discard cd44be6  IGNITE-14389 Meta storage: in-memory implementation WIP
     add 26051c4  IGNITE-14238 Creating and destroying tables. Fixes #112
     add eccad97  IGNITE-14670 Updated metastorage service API: range with 
applied revision, invoke for multiple updates. Fixes #113
     new f02c502  IGNITE-14389 Meta storage: in-memory implementation WIP
     new 580038f  IGNITE-14398: Meta storage: added update counter
     new f18cb84  IGNITE-14389 Added get and do smth semantic
     new 41112b3  IGNITE-14389 getAll and tests (WIP)
     new 96c39ce  IGNITE-14389 putAll initial (WIP)
     new 9781ab3  IGNITE-14389 Added putAll and removeAll. Started cursor 
management: ranges and watches (WIP)
     new 6c26512  IGNITE-14389 Implemented cursor for ranges and watches.
     new 8833492  IGNITE-14389 Implemented conditional update (invoke)

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (73176e2)
            \
             N -- N -- N   refs/heads/ignite-14389 (8833492)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../ignite/internal/affinity/AffinityManager.java  |  23 +-
 .../apache/ignite/table/manager/IgniteTables.java  |   7 +
 .../org/apache/ignite/internal/manager/Event.java} |  10 +-
 .../ignite/internal/manager/EventParameters.java}  |   8 +-
 .../apache/ignite/internal/manager/Producer.java   |  69 ++++++
 .../apache/ignite/internal/util/ArrayUtils.java    |   5 -
 .../ignite/metastorage/common/Condition.java       |   8 +-
 .../ignite/metastorage/common/Operation.java       |   1 +
 .../internal/metastorage/MetaStorageManager.java   |  44 +++-
 .../java/org/apache/ignite/internal/raft/Loza.java |  18 +-
 .../apache/ignite/internal/app/IgnitionImpl.java   |   5 +-
 .../ignite/internal/table/InternalTable.java       |   8 +
 .../apache/ignite/internal/table/TableImpl.java    |  18 ++
 .../internal/table/TableSchemaViewImpl.java}       |  37 ++--
 .../internal/table/distributed/TableManager.java   | 242 +++++++++++++--------
 .../distributed/storage/InternalTableImpl.java     |  13 ++
 .../ignite/internal/table/event/TableEvent.java}   |  12 +-
 .../internal/table/event/TableEventParameters.java |  95 ++++++++
 .../ignite/table/impl/DummyInternalTableImpl.java  |   6 +
 19 files changed, 479 insertions(+), 150 deletions(-)
 copy 
modules/{api/src/main/java/org/apache/ignite/table/InvokeProcessorException.java
 => core/src/main/java/org/apache/ignite/internal/manager/Event.java} (80%)
 copy modules/{api/src/main/java/org/apache/ignite/table/mapper/KeyMapper.java 
=> core/src/main/java/org/apache/ignite/internal/manager/EventParameters.java} 
(80%)
 create mode 100644 
modules/core/src/main/java/org/apache/ignite/internal/manager/Producer.java
 copy 
modules/table/src/{test/java/org/apache/ignite/table/impl/DummySchemaManagerImpl.java
 => main/java/org/apache/ignite/internal/table/TableSchemaViewImpl.java} (61%)
 copy 
modules/{api/src/main/java/org/apache/ignite/table/InvokeProcessorException.java
 => table/src/main/java/org/apache/ignite/internal/table/event/TableEvent.java} 
(73%)
 create mode 100644 
modules/table/src/main/java/org/apache/ignite/internal/table/event/TableEventParameters.java

Reply via email to