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

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


    omit b6421e9c62 wip.
     add a7ad5b0cef IGNITE-22445 Fix flaky ItCatalogDslTest (#3897)
     add 00f5f69550 IGNITE-21969 Extend test coverage for SQL F031-04(Basic 
schema manipulation. ALTER TABLE statement: ADD COLUMN clause) (#3859)
     add 6351e34c5b IGNITE-22393 Fix incorrect BinaryMode in FieldAccessor for 
column data (#3892)
     add 76d8bd0799 IGNITE-21966: Extend test coverage for SQL E091-01(Set 
functions. AVG)  (#3898)
     add 596ef0b592 IGNITE-20650 Fix case-sensitive field names resolution 
(#3850)
     add 120935474c IGNITE-21957 Sql. Extend test coverage for SQL E021-10 
(Character string types. Implicit casting among the character string types) 
(#3896)
     add e7e0cb9e4b wip.
     add 42918b9ddc Add tests.
     add 036f88e74a Fix simple name parsing.

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   (b6421e9c62)
            \
             N -- N -- N   refs/heads/ignite-21964 (036f88e74a)

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:
 .../apache/ignite/lang/util/IgniteNameUtils.java   |  45 ++-
 .../main/java/org/apache/ignite/table/Tuple.java   |   6 +-
 .../java/org/apache/ignite/table/TupleImpl.java    |   2 +-
 .../org/apache/ignite/table/mapper/Mapper.java     |  14 -
 .../org/apache/ignite/table/TupleImplTest.java     |  58 +++
 .../ignite/table/AbstractImmutableTupleTest.java   | 378 ++++++++++++++++++
 .../ignite/table/AbstractMutableTupleTest.java     | 141 +++++++
 .../ignite/internal/catalog/ItCatalogDslTest.java  |   3 +-
 .../table/MutableTupleBinaryTupleAdapter.java      |   3 +-
 .../handler/requests/table/ClientHandlerTuple.java |   3 +-
 modules/client/build.gradle                        |   1 +
 .../org/apache/ignite/client/ClientTupleTest.java  | 314 +++++----------
 .../ignite/internal/util/IgniteNameUtilsTest.java  |   8 +-
 .../ignite/internal/marshaller/FieldAccessor.java  |  21 +-
 .../runner/app/PlatformTestNodeRunner.java         |   2 +-
 .../internal/table/ItColumnNameMappingTest.java    | 212 ++++++++++
 .../internal/table/ItThinClientColocationTest.java |   2 +-
 .../schema/marshaller/KvMarshallerTest.java        |  23 +-
 .../schema/marshaller/RecordMarshallerTest.java    |  22 +-
 .../sql/engine/ItAlterTableAlterColumnTest.java    |   2 +
 .../internal/sql/engine/ItAlterTableDdlTest.java   | 234 +++++++++++
 .../internal/sql/engine/ItCreateTableDdlTest.java  | 185 ++-------
 .../sql/aggregate/aggregates/test_avg.test         |  35 +-
 .../sql/aggregate/aggregates/test_avg.test_ignored |  54 ---
 .../sql/types/char/test_char_length.test           |   5 +
 .../sql/types/char/test_implicit_cast.test         | 136 +++++++
 .../schema/marshaller/TupleMarshallerImpl.java     |   3 +-
 .../internal/table/AbstractRowTupleAdapter.java    |   5 +-
 .../org/apache/ignite/internal/table/TableRow.java |   5 +-
 .../table/ColocationHashCalculationTest.java       |  12 +-
 .../internal/table/MutableRowTupleAdapterTest.java | 430 ++++++---------------
 .../internal/table/SchemaValidationTest.java       |  26 +-
 .../table/type/NumericTypesSerializerTest.java     |  34 +-
 .../org/apache/ignite/table/TupleImplTest.java     | 314 ---------------
 34 files changed, 1595 insertions(+), 1143 deletions(-)
 create mode 100644 
modules/api/src/test/java/org/apache/ignite/table/TupleImplTest.java
 create mode 100644 
modules/api/src/testFixtures/java/org/apache/ignite/table/AbstractImmutableTupleTest.java
 create mode 100644 
modules/api/src/testFixtures/java/org/apache/ignite/table/AbstractMutableTupleTest.java
 create mode 100644 
modules/runner/src/integrationTest/java/org/apache/ignite/internal/table/ItColumnNameMappingTest.java
 create mode 100644 
modules/sql-engine/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItAlterTableDdlTest.java
 delete mode 100644 
modules/sql-engine/src/integrationTest/sql/aggregate/aggregates/test_avg.test_ignored
 create mode 100644 
modules/sql-engine/src/integrationTest/sql/types/char/test_implicit_cast.test
 delete mode 100644 
modules/table/src/test/java/org/apache/ignite/table/TupleImplTest.java

Reply via email to