You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2023/05/18 15:17:01 UTC

[ignite-3] branch ignite-19460 updated (8e862e44ef -> e475d2224c)

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

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


 discard 8e862e44ef Drop table with all it's indexes.
    omit da3bb2a6de Add create/drop index events.
    omit 60e9006f66 Styles
    omit de2f6f45a5 Add create index command. Add drop index command.
     add c9c2389047 Styles
     add e3462f004a Add create index command. Add drop index command.
     add 8c794c45d8 Add create/drop index events.
     add e475d2224c Add create/drop columns commands.

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   (8e862e44ef)
            \
             N -- N -- N   refs/heads/ignite-19460 (e475d2224c)

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.

No new revisions were added by this update.

Summary of changes:
 .../internal/catalog/CatalogServiceImpl.java       | 150 ++++++++++++++++++++-
 .../commands/AlterTableDropColumnParams.java       |   4 +
 .../internal/catalog/commands/CatalogUtils.java    |  10 +-
 .../internal/catalog/commands/ColumnParams.java    |  85 +++++++++++-
 .../catalog/descriptors/HashIndexDescriptor.java   |  20 +--
 .../catalog/descriptors/IndexDescriptor.java       |  19 ++-
 .../catalog/descriptors/SortedIndexDescriptor.java |  21 ++-
 .../catalog/descriptors/TableDescriptor.java       |  45 +++++--
 .../{DropTableEntry.java => DropColumnsEntry.java} |  21 ++-
 .../{DropTableEntry.java => NewColumnsEntry.java}  |  22 ++-
 .../internal/catalog/CatalogServiceSelfTest.java   |  53 ++++++++
 .../internal/runner/app/ItTablesApiTest.java       |  14 +-
 .../engine/exec/ddl/DdlCommandHandlerWrapper.java  |  12 ++
 .../exec/ddl/DdlToCatalogCommandConverter.java     |  29 ++++
 .../distributed/schema/FullTableSchemaTest.java    |   2 +-
 15 files changed, 435 insertions(+), 72 deletions(-)
 copy modules/catalog/src/main/java/org/apache/ignite/internal/catalog/storage/{DropTableEntry.java => DropColumnsEntry.java} (68%)
 copy modules/catalog/src/main/java/org/apache/ignite/internal/catalog/storage/{DropTableEntry.java => NewColumnsEntry.java} (63%)