mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
Rename bool lable from changed to result
This commit is contained in:
parent
4dfeb89b43
commit
e8cd48155a
2 changed files with 2 additions and 2 deletions
|
|
@ -538,7 +538,7 @@ func makeRows(resp pilosa.QueryResponse, logger logger.Logger) chan *pb.RowRespo
|
|||
&pb.ColumnResponse{ColumnVal: &pb.ColumnResponse_Uint64Val{Uint64Val: uint64(r)}},
|
||||
}}
|
||||
case bool:
|
||||
ci := []*pb.ColumnInfo{{Name: "changed", Datatype: "bool"}}
|
||||
ci := []*pb.ColumnInfo{{Name: "result", Datatype: "bool"}}
|
||||
results <- &pb.RowResponse{
|
||||
Headers: ci,
|
||||
Columns: []*pb.ColumnResponse{
|
||||
|
|
|
|||
|
|
@ -209,7 +209,7 @@ func TestGRPC(t *testing.T) {
|
|||
{
|
||||
true,
|
||||
[]expHeader{
|
||||
{"changed", "bool"},
|
||||
{"result", "bool"},
|
||||
},
|
||||
[][]expColumn{
|
||||
{true},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue