Navis Ryu

Results 203 issues of Navis Ryu

https://github.com/apache/druid/pull/8546

@engine

Don't know why it happens but just added check code. ``` java.lang.ArrayIndexOutOfBoundsException: -1 at java.util.ArrayList.elementData(ArrayList.java:424) ~[?:1.8.0_292] at java.util.ArrayList.get(ArrayList.java:437) ~[?:1.8.0_292] at io.druid.segment.incremental.IncrementalIndex$OnHeapDimDim.getValue(IncrementalIndex.java:1368) ~[druid-processing-2021.3-SNAPSHOT.jar:2021.3-SNAPSHOT] at io.druid.segment.incremental.IncrementalIndex$NullValueConverterDimDim.getValue(IncrementalIndex.java:1110) ~[druid-processing-2021.3-SNAPSHOT.jar:2021.3-SNAPSHOT] at io.druid.segment.incremental.IncrementalIndexStorageAdapter$1$1$1MultiValued.lookupName(IncrementalIndexStorageAdapter.java:421) ~[druid-processing-2021.3-SNAPSHOT.jar:2021.3-SNAPSHOT] at io.druid.query.groupby.GroupByQueryEngine$RowIterator$3.apply(GroupByQueryEngine.java:353)...

@engine

``` testQuery( "WITH X AS (" + " SELECT * FROM " + " (VALUES" + " (0, 'A', 1, null, null)," + " (0, 'B', null, 2, null)," +...

@engine

Seemed not working with partitioned segments

bug
@engine
CRITICAL

``` SELECT datetime(__time), Profit, delta(Profit) over () FROM sales WHERE __time < '2011-01-10' or SELECT T, Profit, Profit - PV as DELTA FROM ( SELECT datetime(__time) as T, Profit, $prev(Profit)...

@engine-sql

``` testQuery("SELECT COUNT(DISTINCT L_LINENUMBER,L_RETURNFLAG,L_SHIPMODE) FROM lineitem", new Object[]{150L}); hook.verifyHooked( "OykLTlS8Eoq+R4ic49ebfw==", "TimeseriesQuery{dataSource='lineitem', aggregatorSpecs=[CardinalityAggregatorFactory{name='a0', fields=[DefaultDimensionSpec{dimension='L_LINENUMBER', outputName='L_LINENUMBER'}, DefaultDimensionSpec{dimension='L_RETURNFLAG', outputName='L_RETURNFLAG'}, DefaultDimensionSpec{dimension='L_SHIPMODE', outputName='L_SHIPMODE'}], groupingSets=Noop, byRow=true, round=true, b=11}], outputColumns=[a0]}" ); testQuery("SELECT COUNT(DISTINCT L_LINENUMBER,L_RETURNFLAG,L_SHIPMODE) FROM lineitem WHERE...

@engine-sql