You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sk...@apache.org on 2022/09/06 11:11:23 UTC

[ignite-3] branch main updated: Removed outdated TODOs

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

sk0x50 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 ee6e4779db Removed outdated TODOs
ee6e4779db is described below

commit ee6e4779db90e73f40656645973ca61eead42ffe
Author: Slava Koptilin <sl...@gmail.com>
AuthorDate: Tue Sep 6 14:11:08 2022 +0300

    Removed outdated TODOs
---
 .../src/main/java/org/apache/ignite/internal/schema/SchemaRegistry.java | 1 -
 .../ignite/internal/table/distributed/storage/VersionedRowStore.java    | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/schema/src/main/java/org/apache/ignite/internal/schema/SchemaRegistry.java b/modules/schema/src/main/java/org/apache/ignite/internal/schema/SchemaRegistry.java
index e69147d179..5d604c50a9 100644
--- a/modules/schema/src/main/java/org/apache/ignite/internal/schema/SchemaRegistry.java
+++ b/modules/schema/src/main/java/org/apache/ignite/internal/schema/SchemaRegistry.java
@@ -29,7 +29,6 @@ import org.apache.ignite.internal.schema.row.Row;
  *
  * <p>After some table maintenance process some first versions may become outdated and can be safely cleaned up if the process guarantees
  * the table no longer has a data of these versions.
- * TODO: IGNITE-16550 Redesign SchemaRegistry to use causality tokens
  *
  * @implSpec The changes in between two arbitrary actual versions MUST NOT be lost. Thus, schema versions can only be removed from the
  *      beginning.
diff --git a/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/VersionedRowStore.java b/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/VersionedRowStore.java
index 603ae98f7f..e65ebeb739 100644
--- a/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/VersionedRowStore.java
+++ b/modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/VersionedRowStore.java
@@ -543,7 +543,7 @@ public class VersionedRowStore {
      * @return The cursor.
      */
     public Cursor<BinaryRow> scan(Predicate<BinaryRow> pred) {
-        // TODO https://issues.apache.org/jira/browse/IGNITE-17309 Transactional support for partition scans
+        // TODO <MUTED> https://issues.apache.org/jira/browse/IGNITE-17309 Transactional support for partition scans
         Cursor<BinaryRow> delegate = storage.scan(pred, Timestamp.nextVersion());
 
         // TODO asch add tx support IGNITE-15087.