-
Notifications
You must be signed in to change notification settings - Fork 2
Conversation
9ab4d56
to
b344f12
Compare
b344f12
to
8df5d13
Compare
<configuration> | ||
<parallel>methods</parallel> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Parallel testing was creating flakiness
* @param attr The attribute | ||
* @param isString True if the attribute is String | ||
* @param bound The bound | ||
* @param op TIleDB operator | ||
* @return The query Condition | ||
* @throws TileDBError | ||
* @throws TileDBError TileDBError |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the repetition?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trino 411 introduced more format checks, one of them is that every parameter in the java docs needs to have a description. That's why I added TileDBError
@@ -542,12 +541,13 @@ else if (attBounds.getSecond() == null) { | |||
|
|||
/** | |||
* Returns the Query condition for the given bound. | |||
* | |||
* @param attr The attribute | |||
* @param isString True if the attribute is String | |||
* @param bound The bound | |||
* @param op TIleDB operator |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same reason as above, parameters in java docs now need to have one empty line preceding them
This update adds support for Trino-411.
Some dependencies needed to update.
Also, trino removed the
trino.testing....assertEquals
method because of this (however the error described in the link did not affect us). I am now using thetestng.AssertEquals
instead. The modernizer suggested to use thepresto.testing....assertEquals
but I thought that it is unnecessary to include presto as a dependency and when I tried, several dependency conflicts came up.