[
https://issues.apache.org/jira/browse/IGNITE-7793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16628720#comment-16628720
]
Ignite TC Bot commented on IGNITE-7793:
---------------------------------------
{panel:title=Possible
Blockers|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1}
{color:#d04437}Platform .NET{color} [[tests
1|https://ci.ignite.apache.org/viewLog.html?buildId=1938518]]
* exe: BinaryDynamicRegistrationTest.TestJavaInterop - 0,0% fails in last 100
master runs.
{color:#d04437}SPI{color} [[tests
2|https://ci.ignite.apache.org/viewLog.html?buildId=1946133]]
* IgniteSpiTestSuite: TcpDiscoverySslSelfTest.testFailedNodes3 - 0,0% fails in
last 100 master runs.
{color:#d04437}Platform .NET (Long Running){color} [[tests
4|https://ci.ignite.apache.org/viewLog.html?buildId=1938521]]
* exe: ExamplesTest.TestRemoteNodes(BinaryModeExample) - 0,0% fails in last 100
master runs.
* exe: ExamplesTest.TestRemoteNodes(LinqExample) - 0,0% fails in last 100
master runs.
* exe: ExamplesTest.TestRemoteNodes(SqlExample) - 0,0% fails in last 100 master
runs.
{color:#d04437}ZooKeeper (Discovery) 2{color} [[tests
3|https://ci.ignite.apache.org/viewLog.html?buildId=1938513]]
* ZookeeperDiscoverySpiTestSuite2:
IgniteClientReconnectCacheTest.testReconnectMultinode - 0,0% fails in last 100
master runs.
* ZookeeperDiscoverySpiTestSuite2:
IgniteClientReconnectCacheTest.testReconnectMultinodeLongHistory - 0,0% fails
in last 100 master runs.
{color:#d04437}Cache 7 (With Persistence){color} [[tests
2|https://ci.ignite.apache.org/viewLog.html?buildId=1946476]]
* IgniteCacheTestSuite7:
TxRollbackAsyncWithPersistenceTest.testMixedAsyncRollbackTypes - 0,0% fails in
last 100 master runs.
{color:#d04437}Cache 6{color} [[tests
2|https://ci.ignite.apache.org/viewLog.html?buildId=1938537]]
* IgniteCacheTestSuite6:
TxRollbackAsyncNearCacheTest.testMixedAsyncRollbackTypes - 0,0% fails in last
100 master runs.
{color:#d04437}PDS (Direct IO) 2{color} [[tests
3|https://ci.ignite.apache.org/viewLog.html?buildId=1938525]]
* IgnitePdsNativeIoTestSuite2: IgnitePersistentStoreDataStructuresTest.testSet
- 0,0% fails in last 100 master runs.
{color:#d04437}PDS 2{color} [[tests
2|https://ci.ignite.apache.org/viewLog.html?buildId=1946135]]
* IgnitePdsTestSuite2: IgnitePersistentStoreDataStructuresTest.testSet - 0,0%
fails in last 100 master runs.
{color:#d04437}Examples{color} [[tests
1|https://ci.ignite.apache.org/viewLog.html?buildId=1946360]]
* IgniteExamplesSelfTestSuite:
CacheClientBinaryExampleTest.testBinaryQueryExample - 0,0% fails in last 100
master runs.
{panel}
[TeamCity Run
All|http://ci.ignite.apache.org/viewLog.html?buildId=1938572&buildTypeId=IgniteTests24Java8_RunAll]
> SQL does not work if value has sql field which name equals to affinity key
> name
> -------------------------------------------------------------------------------
>
> Key: IGNITE-7793
> URL: https://issues.apache.org/jira/browse/IGNITE-7793
> Project: Ignite
> Issue Type: Bug
> Components: sql
> Affects Versions: 2.3
> Reporter: Mikhail Cherkasov
> Assignee: Maxim Pudov
> Priority: Major
> Fix For: 2.7
>
>
> SQL does not work if value has index filed which name equals to affinity key
> name:
> {code:java}
> public class AKey {
> @AffinityKeyMapped
> int a;
> public AKey(int a) {
> this.a = a;
> }
> }
> public class AVal {
> @QuerySqlField
> int a;
> public AVal(int a) {
> this.a = a;
> }
> }
> AKey aKey = new AKey(1);
> AVal aVal = new AVal(0);
> IgniteCache<Object, Object> cache = ignite.cache("Instrument");
> cache.put(aKey, aVal);
> SqlFieldsQuery query = new SqlFieldsQuery("select * from \"Instrument\".AVal
> it where it.a=?");
> List<List<?>> res = cache.query(query.setArgs(0)).getAll();
> if(res.isEmpty()) {
> System.out.println("!!!!!!!!! FAILED !!!!!!!!!!!");
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)