@ -69,7 +69,7 @@ func Test_dataobjScan(t *testing.T) {
Object : obj ,
StreamIDs : [ ] int64 { 1 , 2 } , // All streams
Projections : nil , // All columns
Direction : physical . Forward ,
Direction : physical . ASC ,
Limit : 0 , // No limit
} )
@ -102,7 +102,7 @@ prod,loki,eeee-ffff-aaaa-bbbb,NULL,1970-01-01 00:00:10,goodbye world`
& physical . ColumnExpr { Ref : types . ColumnRef { Column : "timestamp" , Type : types . ColumnTypeBuiltin } } ,
& physical . ColumnExpr { Ref : types . ColumnRef { Column : "env" , Type : types . ColumnTypeLabel } } ,
} ,
Direction : physical . Forward ,
Direction : physical . ASC ,
Limit : 0 , // No limit
} )
@ -132,7 +132,7 @@ prod,loki,eeee-ffff-aaaa-bbbb,NULL,1970-01-01 00:00:10,goodbye world`
Projections : [ ] physical . ColumnExpression {
& physical . ColumnExpr { Ref : types . ColumnRef { Column : "env" , Type : types . ColumnTypeAmbiguous } } ,
} ,
Direction : physical . Forward ,
Direction : physical . ASC ,
Limit : 0 , // No limit
} )
@ -194,7 +194,7 @@ func Test_dataobjScan_DuplicateColumns(t *testing.T) {
Object : obj ,
StreamIDs : [ ] int64 { 1 , 2 , 3 } , // All streams
Projections : nil , // All columns
Direction : physical . Forward ,
Direction : physical . ASC ,
Limit : 0 , // No limit
} )
@ -229,7 +229,7 @@ prod,namespace-2,NULL,loki,NULL,NULL,1970-01-01 00:00:03,message 3`
Projections : [ ] physical . ColumnExpression {
& physical . ColumnExpr { Ref : types . ColumnRef { Column : "pod" , Type : types . ColumnTypeAmbiguous } } ,
} ,
Direction : physical . Forward ,
Direction : physical . ASC ,
Limit : 0 , // No limit
} )
@ -256,7 +256,7 @@ NULL,NULL`
Projections : [ ] physical . ColumnExpression {
& physical . ColumnExpr { Ref : types . ColumnRef { Column : "namespace" , Type : types . ColumnTypeAmbiguous } } ,
} ,
Direction : physical . Forward ,
Direction : physical . ASC ,
Limit : 0 , // No limit
} )