You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by dp...@apache.org on 2018/08/22 13:54:58 UTC

[9/9] ignite git commit: Merge branch 'master' into ignite-9340

Merge branch 'master' into ignite-9340


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/2d410c55
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/2d410c55
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/2d410c55

Branch: refs/heads/ignite-9340
Commit: 2d410c55ad485571754ccb4aa6a9d6f3746b7019
Parents: c847a89 0020e41
Author: Dmitriy Pavlov <dp...@apache.org>
Authored: Wed Aug 22 16:54:31 2018 +0300
Committer: Dmitriy Pavlov <dp...@apache.org>
Committed: Wed Aug 22 16:54:31 2018 +0300

----------------------------------------------------------------------
 .../jdbc/suite/IgniteJdbcDriverTestSuite.java   |   2 +
 ...bcThinComplexDmlDdlCustomSchemaSelfTest.java |  78 ++++++++
 .../thin/JdbcThinComplexDmlDdlSelfTest.java     |  20 +-
 .../configuration/IgniteConfiguration.java      |  33 ++++
 .../apache/ignite/internal/IgniteKernal.java    |   2 +-
 .../processors/cache/GridCacheProcessor.java    |  19 ++
 .../odbc/ClientListenerNioListener.java         |   4 +-
 .../utils/PlatformConfigurationUtils.java       |  23 +++
 .../internal/processors/query/h2/H2Schema.java  |  31 ++-
 .../processors/query/h2/IgniteH2Indexing.java   | 132 +++++++------
 .../query/h2/ddl/DdlStatementsProcessor.java    |  97 +++++-----
 .../cache/index/H2DynamicTableSelfTest.java     |  29 ---
 .../query/SqlIllegalSchemaSelfTest.java         | 187 +++++++++++++++++++
 .../IgniteCacheQuerySelfTestSuite.java          |   2 +
 .../config/az/ignite-account-role.yaml          |  30 +++
 .../kubernetes/config/az/ignite-deployment.yaml |  47 +++++
 .../kubernetes/config/az/ignite-namespace.yaml  |  19 ++
 .../az/ignite-persistence-storage-class.yaml    |  25 +++
 .../config/az/ignite-role-binding.yaml          |  27 +++
 .../config/az/ignite-service-account.yaml       |  20 ++
 .../kubernetes/config/az/ignite-service.yaml    |  38 ++++
 .../config/az/ignite-stateful-set.yaml          |  74 ++++++++
 .../config/az/ignite-wal-storage-class.yaml     |  25 +++
 .../ignite/impl/binary/binary_reader_impl.h     |  50 +++--
 .../ignite/impl/binary/binary_type_impl.h       |   8 +-
 .../ignite/impl/binary/binary_writer_impl.h     |  48 +++--
 .../src/impl/binary/binary_reader_impl.cpp      |  46 ++---
 .../src/impl/binary/binary_writer_impl.cpp      |  58 +++---
 .../src/impl/cluster/cluster_group_impl.cpp     |   2 +-
 .../odbc-test/include/sql_test_suite_fixture.h  |  14 +-
 .../src/application_data_buffer_test.cpp        |   4 +-
 .../cpp/odbc-test/src/odbc_test_suite.cpp       |   2 +-
 .../cpp/odbc-test/src/queries_test.cpp          |  10 +-
 .../platforms/cpp/odbc-test/src/row_test.cpp    |   2 +-
 .../src/sql_aggregate_functions_test.cpp        |  16 +-
 .../src/sql_date_time_functions_test.cpp        |  38 ++--
 .../src/sql_esc_convert_function_test.cpp       |   6 +-
 .../src/sql_numeric_functions_test.cpp          |   4 +-
 .../cpp/odbc-test/src/sql_operators_test.cpp    |  10 +-
 .../odbc-test/src/sql_string_functions_test.cpp |  20 +-
 .../odbc-test/src/sql_system_functions_test.cpp |   2 +-
 .../odbc-test/src/sql_test_suite_fixture.cpp    |  24 +--
 .../cpp/odbc-test/src/sql_types_test.cpp        |   6 +-
 .../src/sql_value_expressions_test.cpp          |   6 +-
 .../odbc/src/app/application_data_buffer.cpp    |  16 +-
 .../include/ignite/impl/thin/readable.h         |   2 +-
 .../Config/full-config.xml                      |   4 +
 .../IgniteConfigurationSerializerTest.cs        |   6 +
 .../IgniteConfigurationTest.cs                  |  10 +-
 .../Apache.Ignite.Core/IgniteConfiguration.cs   |  34 ++++
 .../IgniteConfigurationSection.xsd              |  10 +
 .../services/ConfigurationResource.js           |   4 +-
 .../services/ConfigurationResource.spec.js      |  78 ++++++++
 53 files changed, 1160 insertions(+), 344 deletions(-)
----------------------------------------------------------------------