File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -343,16 +343,16 @@ func TestParquetProjectionPushdown(t *testing.T) {
343343 require .NotNil (t , result )
344344
345345 // Verify we got results
346- matrix , ok := result .(model.Matrix )
347- require .True (t , ok , "result should be a matrix " )
348- require .NotEmpty (t , matrix , "query should return results" )
346+ vector , ok := result .(model.Vector )
347+ require .True (t , ok , "result should be a vector " )
348+ require .NotEmpty (t , vector , "query should return results" )
349349
350- t .Logf ("Query returned %d series" , len (matrix ))
350+ t .Logf ("Query returned %d series" , len (vector ))
351351
352352 // Verify projection worked: series should only have the expected labels
353- for _ , series := range matrix {
353+ for _ , sample := range vector {
354354 actualLabels := make (map [string ]struct {})
355- for _ , label := range series .Metric {
355+ for _ , label := range sample .Metric {
356356 actualLabels [string (label )] = struct {}{}
357357 }
358358
You can’t perform that action at this time.
0 commit comments