This is an automated email from the ASF dual-hosted git repository.
korlov pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
from 8df4e54430 IGNITE-23014 IgniteCompute transparency with respect to
node restart (#4357)
add 715dccf26a IGNITE-23023 Sql. Improve result type for AVG function for
NUMERIC types (#4352)
No new revisions were added by this update.
Summary of changes:
.../Linq/LinqTests.Aggregate.cs | 2 +-
.../Linq/LinqTests.AsyncMaterialization.cs | 16 +--
modules/sql-engine/build.gradle | 1 +
.../internal/sql/engine/ItAggregatesTest.java | 88 +++++++-----
.../internal/sql/engine/ItSqlOperatorsTest.java | 3 +-
.../sql/aggregate/aggregates/test_aggr_string.test | 6 +-
.../internal/sql/engine/type/IgniteTypeSystem.java | 31 +++++
.../planner/datatypes/BaseTypeCoercionTest.java | 29 ++++
.../NumericAggregateTypeCoercionTest.java | 149 +++++++++++++++++++++
.../sql/engine/planner/datatypes/utils/Types.java | 37 +++--
.../sql/engine/type/IgniteTypeSystemTest.java | 80 +++++++++++
.../src/test/resources/tpch/plan/q1.plan | 2 +-
12 files changed, 390 insertions(+), 54 deletions(-)
create mode 100644
modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/planner/datatypes/NumericAggregateTypeCoercionTest.java