This is an automated email from the ASF dual-hosted git repository.
nizhikov pushed a change to branch ignite-2.8.1
in repository https://gitbox.apache.org/repos/asf/ignite.git.
from b94a4ed IGNITE-12285 Partial revert.
add 2cc2403 IGNITE-12800 SQL: local queries cursors must be closed or
full read to unlock the GridH2Table. (#7551)
add 5142ea5 IGNITE-12848 fix H2Connection leaks on INSERT
add 200df19 IGNITE-12887 Fix handle type mismatch exception on compare
values while traversing index tree.
add 02b0439 IGNITE-12790 Introduce distributed SQL configuration and
ability to disable SQL functions. (#7593)
No new revisions were added by this update.
Summary of changes:
...eeClassificationTrainerSQLInferenceExample.java | 11 +-
...onTreeClassificationTrainerSQLTableExample.java | 11 +-
.../ignite/jdbc/thin/JdbcThinAbstractSelfTest.java | 7 +-
.../ignite/jdbc/thin/JdbcThinBatchSelfTest.java | 27 +-
.../jdbc/thin/JdbcThinLocalQueriesSelfTest.java | 45 +++-
.../cluster/DistributedBaselineConfiguration.java | 45 +---
.../cluster/DistributedConfigurationUtils.java | 77 ++++++
.../internal/processors/cache/QueryCursorImpl.java | 40 ++-
.../internal/processors/query/GridQueryCancel.java | 7 +-
.../metastorage/DistributedMetaStorageTest.java | 26 +-
.../cache/query/RegisteredQueryCursor.java | 62 ++++-
.../processors/query/h2/CommandProcessor.java | 6 +-
.../query/h2/DistributedSqlConfiguration.java | 120 +++++++++
.../query/h2/DmlStatementsProcessor.java | 2 +-
.../processors/query/h2/FunctionsManager.java | 88 +++++++
.../processors/query/h2/H2FieldsIterator.java | 9 +-
.../processors/query/h2/H2KeyValueIterator.java | 48 ----
.../processors/query/h2/H2ResultSetIterator.java | 286 ++++++++++++++++----
.../internal/processors/query/h2/H2Utils.java | 2 +-
.../processors/query/h2/IgniteH2Indexing.java | 55 +++-
.../processors/query/h2/database/H2Tree.java | 84 +++---
.../processors/query/h2/opt/GridH2Table.java | 4 +-
.../query/h2/twostep/GridReduceQueryExecutor.java | 3 +-
.../processors/cache/index/BasicIndexTest.java | 56 +++-
.../cache/index/H2ConnectionLeaksSelfTest.java | 96 +++++++
.../processors/query/DisabledSqlFunctionsTest.java | 290 +++++++++++++++++++++
.../internal/processors/query/KillQueryTest.java | 56 +++-
.../processors/query/LocalQueryLazyTest.java | 128 ++++++++-
.../IgniteBinaryCacheQueryTestSuite2.java | 3 +
.../CacheSpringStoreSessionListenerSelfTest.java | 27 ++
30 files changed, 1471 insertions(+), 250 deletions(-)
create mode 100644
modules/core/src/main/java/org/apache/ignite/internal/cluster/DistributedConfigurationUtils.java
create mode 100644
modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/DistributedSqlConfiguration.java
create mode 100644
modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/FunctionsManager.java
delete mode 100644
modules/indexing/src/main/java/org/apache/ignite/internal/processors/query/h2/H2KeyValueIterator.java
create mode 100644
modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/DisabledSqlFunctionsTest.java