-
Notifications
You must be signed in to change notification settings - Fork 156
Closed
Labels
Description
Running client smoke tests on Ubunut 16.04 give 3 errors with master branch:
Tests run: 19, Failures: 3, Errors: 0, Skipped: 1, Time elapsed: 2.509 sec <<< FAILURE! - in com.basho.riak.client.api.commands.itest.ITestTimeSeries
test_p_TestDescribeTable(com.basho.riak.client.api.commands.itest.ITestTimeSeries) Time elapsed: 0.033 sec <<< FAILURE!
java.lang.AssertionError
at com.basho.riak.client.api.commands.itest.ITestTimeSeries.test_p_TestDescribeTable(ITestTimeSeries.java:340)
test_q_TestDescribeTableCommand(com.basho.riak.client.api.commands.itest.ITestTimeSeries) Time elapsed: 0.028 sec <<< FAILURE!
java.lang.AssertionError
at com.basho.riak.client.api.commands.itest.ITestTimeSeries.test_q_TestDescribeTableCommand(ITestTimeSeries.java:355)
test_r_TestDescribeTableCommandForNonExistingTable(com.basho.riak.client.api.commands.itest.ITestTimeSeries) Time elapsed: 0.038 sec <<< FAILURE!
java.lang.AssertionError
at com.basho.riak.client.api.commands.itest.ITestTimeSeries.test_r_TestDescribeTableCommandForNonExistingTable(ITestTimeSeries.java:377)
The first tests expects 7 columns but new changes in ts 1.5.0rc1 give 8 columns:
riak-shell(2)>DESCRIBE GeoHash978473806;
+-----------+---------+--------+-------------+---------+--------+----+----------+
| Column | Type |Nullable|Partition Key|Local Key|Interval|Unit|Sort Order|
+-----------+---------+--------+-------------+---------+--------+----+----------+
| geohash | varchar | false | 1 | 1 | | | |
| user | varchar | false | 2 | 2 | | | |
| time |timestamp| false | 3 | 3 | 15 | m | |
| weather | varchar | false | | | | | |
|temperature| double | true | | | | | |
| uv_index | sint64 | true | | | | | |
| observed | boolean | false | | | | | |
+-----------+---------+--------+-------------+---------+--------+----+----------+
Not sure about the second test failure.
The third test failure probably has to do with a change in the error message... Looks like it should expect this: Table XXXXXX is not active.
Steps to Reproduce
Your Environment
Master
1.8
1.5.0rc1
Ubuntu 16.04
make test-ts
Reactions are currently unavailable