You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ignite TC Bot (Jira)" <ji...@apache.org> on 2020/09/25 08:41:00 UTC

[jira] [Commented] (IGNITE-13484) C++ odbc-example losing some values if run with 1 additional node

    [ https://issues.apache.org/jira/browse/IGNITE-13484?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17201996#comment-17201996 ] 

Ignite TC Bot commented on IGNITE-13484:
----------------------------------------

{panel:title=Branch: [pull/8278/head] Base: [master] : Possible Blockers (1)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1}
{color:#d04437}Platform C++ (Win x64 / Debug){color} [[tests 0 BuildFailureOnMessage |https://ci.ignite.apache.org/viewLog.html?buildId=5623437]]

{panel}
{panel:title=Branch: [pull/8278/head] Base: [master] : New Tests (879)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#D6F7C1}
{color:#00008b}Platform C++ (Win x64 / Debug){color} [[tests 879|https://ci.ignite.apache.org/viewLog.html?buildId=5623437]]
* {color:#013220}IgniteOdbcTest: SqlNumericFunctionTestSuite: TestNumericFunctionFloor - PASSED{color}
* {color:#013220}IgniteOdbcTest: SqlNumericFunctionTestSuite: TestNumericFunctionLog - PASSED{color}
* {color:#013220}IgniteOdbcTest: SqlDateTimeFunctionTestSuite: TestCurrentDate - PASSED{color}
* {color:#013220}IgniteCoreTest: CacheQueryTestSuite: TestFieldsQueryByteArrayInsertSelect - PASSED{color}
* {color:#013220}IgniteCoreTest: ContinuousQueryTestSuite: TestBasic - PASSED{color}
* {color:#013220}IgniteCoreTest: ContinuousQueryTestSuite: TestInitialQueryScan - PASSED{color}
* {color:#013220}IgniteOdbcTest: ApiRobustnessTestSuite: TestSQLGetStmtAttr - PASSED{color}
* {color:#013220}IgniteOdbcTest: ApplicationDataBufferTestSuite: TestPutStringToLong - PASSED{color}
* {color:#013220}IgniteCoreTest: ContinuousQueryTestSuite: TestInitialQuerySql - PASSED{color}
* {color:#013220}IgniteOdbcTest: ApplicationDataBufferTestSuite: TestPutStringToTiny - PASSED{color}
* {color:#013220}IgniteCoreTest: ContinuousQueryTestSuite: TestInitialQueryText - PASSED{color}
... and 868 new tests

{panel}
[TeamCity *-&gt; Run :: CPP* Results|https://ci.ignite.apache.org/viewLog.html?buildId=5623431&amp;buildTypeId=IgniteTests24Java8_RunCpp]

> C++ odbc-example losing some values if run with 1 additional node
> -----------------------------------------------------------------
>
>                 Key: IGNITE-13484
>                 URL: https://issues.apache.org/jira/browse/IGNITE-13484
>             Project: Ignite
>          Issue Type: Bug
>          Components: odbc
>    Affects Versions: 2.8.1
>            Reporter: Igor Sapego
>            Assignee: Igor Sapego
>            Priority: Major
>             Fix For: 2.10
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Case:
> - run 1 additional node
> - run odbc-example
> Actual:
> {code}
> >>> Cache ODBC example started.
> >>> Getting list of persons:
> >>> John Doe Master Degree. 2200 
> >>> John Smith Bachelor Degree. 1700 
> >>> Jane Smith Master Degree. 2500 
> >>> John Roe Bachelor Degree. 1500 
> >>> Jane Roe Bachelor Degree. 1000 
> >>> Richard Miles Master Degree. 2400 
> >>> Mary Major Bachelor Degree. 900 
> >>> Jane Doe Bachelor Degree. 1300
> >>> Getting average salary by degree:
> >>> Bachelor Degree. 1280 
> >>> Master Degree. 2366.67
> >>> Getting people with organizations:
> >>> John Doe Microsoft 
> >>> Richard Miles Microsoft
> >>> Adjusted salary for Mary Major. Querying again.
> >>> Getting list of persons:
> >>> John Doe Master Degree. 2200 
> >>> John Smith Bachelor Degree. 1700 
> >>> Jane Smith Master Degree. 2500 
> >>> John Roe Bachelor Degree. 1500 
> >>> Jane Roe Bachelor Degree. 1000 
> >>> Richard Miles Master Degree. 2400 
> >>> Mary Major Bachelor Degree. 1200 
> >>> Jane Doe Bachelor Degree. 1300
> >>> Getting average salary by degree:
> >>> Bachelor Degree. 1340 
> >>> Master Degree. 2366.67
> >>> Getting people with organizations:
> >>> John Doe Microsoft 
> >>> Richard Miles Microsoft
> >>> Removing several employees. Querying again.
> >>> Getting list of persons:
> >>> John Doe Master Degree. 2200 
> >>> John Smith Bachelor Degree. 1700 
> >>> Jane Roe Bachelor Degree. 1000 
> >>> Richard Miles Master Degree. 2400 
> >>> Mary Major Bachelor Degree. 1200 
> >>> Jane Doe Bachelor Degree. 1300
> >>> Getting average salary by degree:
> >>> Bachelor Degree. 1300 
> >>> Master Degree. 2300
> >>> Getting people with organizations:
> >>> John Doe Microsoft 
> >>> Richard Miles Microsoft 
> [12:10:00] Ignite node stopped OK [uptime=00:00:00.876]
> >>> Example finished, press 'Enter' to exit ...
> {code}
> Output with 0 addition nodes
> {code}
> >>> Cache ODBC example started.
> >>> Getting list of persons:
> >>> John Doe Master Degree. 2200 
> >>> Jane Doe Bachelor Degree. 1300 
> >>> John Smith Bachelor Degree. 1700 
> >>> Jane Smith Master Degree. 2500 
> >>> John Roe Bachelor Degree. 1500 
> >>> Jane Roe Bachelor Degree. 1000 
> >>> Richard Miles Master Degree. 2400 
> >>> Mary Major Bachelor Degree. 900
> >>> Getting average salary by degree:
> >>> Bachelor Degree. 1280 
> >>> Master Degree. 2366.67
> >>> Getting people with organizations:
> >>> John Doe Microsoft 
> >>> Jane Doe Microsoft 
> >>> John Smith Red Cross 
> >>> Jane Smith Red Cross 
> >>> John Roe Red Cross 
> >>> Jane Roe Red Cross 
> >>> Richard Miles Microsoft 
> >>> Mary Major Red Cross
> >>> Adjusted salary for Mary Major. Querying again.
> >>> Getting list of persons:
> >>> John Doe Master Degree. 2200 
> >>> Jane Doe Bachelor Degree. 1300 
> >>> John Smith Bachelor Degree. 1700 
> >>> Jane Smith Master Degree. 2500 
> >>> John Roe Bachelor Degree. 1500 
> >>> Jane Roe Bachelor Degree. 1000 
> >>> Richard Miles Master Degree. 2400 
> >>> Mary Major Bachelor Degree. 1200
> >>> Getting average salary by degree:
> >>> Bachelor Degree. 1340 
> >>> Master Degree. 2366.67
> >>> Getting people with organizations:
> >>> John Doe Microsoft 
> >>> Jane Doe Microsoft 
> >>> John Smith Red Cross 
> >>> Jane Smith Red Cross 
> >>> John Roe Red Cross 
> >>> Jane Roe Red Cross 
> >>> Richard Miles Microsoft 
> >>> Mary Major Red Cross
> >>> Removing several employees. Querying again.
> >>> Getting list of persons:
> >>> John Doe Master Degree. 2200 
> >>> Jane Doe Bachelor Degree. 1300 
> >>> John Smith Bachelor Degree. 1700 
> >>> Jane Roe Bachelor Degree. 1000 
> >>> Richard Miles Master Degree. 2400 
> >>> Mary Major Bachelor Degree. 1200
> >>> Getting average salary by degree:
> >>> Bachelor Degree. 1300 
> >>> Master Degree. 2300
> >>> Getting people with organizations:
> >>> John Doe Microsoft 
> >>> Jane Doe Microsoft 
> >>> John Smith Red Cross 
> >>> Jane Roe Red Cross 
> >>> Richard Miles Microsoft 
> >>> Mary Major Red Cross 
> [12:08:42] Ignite node stopped OK [uptime=00:00:00.687]
> >>> Example finished, press 'Enter' to exit ...
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)