mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
Merge branch 'master' into fix-rbf-cursor-close
This commit is contained in:
commit
b3854e867b
4 changed files with 796 additions and 50 deletions
|
|
@ -838,6 +838,341 @@ func (*IdsOrKeys) XXX_OneofWrappers() []interface{} {
|
|||
}
|
||||
}
|
||||
|
||||
type Index struct {
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Index) Reset() { *m = Index{} }
|
||||
func (m *Index) String() string { return proto.CompactTextString(m) }
|
||||
func (*Index) ProtoMessage() {}
|
||||
func (*Index) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{13}
|
||||
}
|
||||
|
||||
func (m *Index) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Index.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Index) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Index.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Index) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Index.Merge(m, src)
|
||||
}
|
||||
func (m *Index) XXX_Size() int {
|
||||
return xxx_messageInfo_Index.Size(m)
|
||||
}
|
||||
func (m *Index) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Index.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Index proto.InternalMessageInfo
|
||||
|
||||
func (m *Index) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type CreateIndexRequest struct {
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
Keys bool `protobuf:"varint,2,opt,name=keys,proto3" json:"keys,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CreateIndexRequest) Reset() { *m = CreateIndexRequest{} }
|
||||
func (m *CreateIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CreateIndexRequest) ProtoMessage() {}
|
||||
func (*CreateIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{14}
|
||||
}
|
||||
|
||||
func (m *CreateIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CreateIndexRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CreateIndexRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CreateIndexRequest.Merge(m, src)
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_CreateIndexRequest.Size(m)
|
||||
}
|
||||
func (m *CreateIndexRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CreateIndexRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CreateIndexRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *CreateIndexRequest) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *CreateIndexRequest) GetKeys() bool {
|
||||
if m != nil {
|
||||
return m.Keys
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
type CreateIndexResponse struct {
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CreateIndexResponse) Reset() { *m = CreateIndexResponse{} }
|
||||
func (m *CreateIndexResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*CreateIndexResponse) ProtoMessage() {}
|
||||
func (*CreateIndexResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{15}
|
||||
}
|
||||
|
||||
func (m *CreateIndexResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CreateIndexResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CreateIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CreateIndexResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CreateIndexResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CreateIndexResponse.Merge(m, src)
|
||||
}
|
||||
func (m *CreateIndexResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_CreateIndexResponse.Size(m)
|
||||
}
|
||||
func (m *CreateIndexResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CreateIndexResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CreateIndexResponse proto.InternalMessageInfo
|
||||
|
||||
type GetIndexRequest struct {
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetIndexRequest) Reset() { *m = GetIndexRequest{} }
|
||||
func (m *GetIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexRequest) ProtoMessage() {}
|
||||
func (*GetIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{16}
|
||||
}
|
||||
|
||||
func (m *GetIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetIndexRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetIndexRequest.Merge(m, src)
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_GetIndexRequest.Size(m)
|
||||
}
|
||||
func (m *GetIndexRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetIndexRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetIndexRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *GetIndexRequest) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type GetIndexResponse struct {
|
||||
Index *Index `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetIndexResponse) Reset() { *m = GetIndexResponse{} }
|
||||
func (m *GetIndexResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexResponse) ProtoMessage() {}
|
||||
func (*GetIndexResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{17}
|
||||
}
|
||||
|
||||
func (m *GetIndexResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetIndexResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *GetIndexResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetIndexResponse.Merge(m, src)
|
||||
}
|
||||
func (m *GetIndexResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_GetIndexResponse.Size(m)
|
||||
}
|
||||
func (m *GetIndexResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetIndexResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetIndexResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *GetIndexResponse) GetIndex() *Index {
|
||||
if m != nil {
|
||||
return m.Index
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type GetIndexesRequest struct {
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetIndexesRequest) Reset() { *m = GetIndexesRequest{} }
|
||||
func (m *GetIndexesRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexesRequest) ProtoMessage() {}
|
||||
func (*GetIndexesRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{18}
|
||||
}
|
||||
|
||||
func (m *GetIndexesRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexesRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetIndexesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetIndexesRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *GetIndexesRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetIndexesRequest.Merge(m, src)
|
||||
}
|
||||
func (m *GetIndexesRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_GetIndexesRequest.Size(m)
|
||||
}
|
||||
func (m *GetIndexesRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetIndexesRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetIndexesRequest proto.InternalMessageInfo
|
||||
|
||||
type GetIndexesResponse struct {
|
||||
Indexes []*Index `protobuf:"bytes,1,rep,name=indexes,proto3" json:"indexes,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetIndexesResponse) Reset() { *m = GetIndexesResponse{} }
|
||||
func (m *GetIndexesResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetIndexesResponse) ProtoMessage() {}
|
||||
func (*GetIndexesResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{19}
|
||||
}
|
||||
|
||||
func (m *GetIndexesResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetIndexesResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetIndexesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetIndexesResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *GetIndexesResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetIndexesResponse.Merge(m, src)
|
||||
}
|
||||
func (m *GetIndexesResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_GetIndexesResponse.Size(m)
|
||||
}
|
||||
func (m *GetIndexesResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetIndexesResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetIndexesResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *GetIndexesResponse) GetIndexes() []*Index {
|
||||
if m != nil {
|
||||
return m.Indexes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type DeleteIndexRequest struct {
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DeleteIndexRequest) Reset() { *m = DeleteIndexRequest{} }
|
||||
func (m *DeleteIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteIndexRequest) ProtoMessage() {}
|
||||
func (*DeleteIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{20}
|
||||
}
|
||||
|
||||
func (m *DeleteIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DeleteIndexRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DeleteIndexRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DeleteIndexRequest.Merge(m, src)
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_DeleteIndexRequest.Size(m)
|
||||
}
|
||||
func (m *DeleteIndexRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DeleteIndexRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DeleteIndexRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *DeleteIndexRequest) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type DeleteIndexResponse struct {
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DeleteIndexResponse) Reset() { *m = DeleteIndexResponse{} }
|
||||
func (m *DeleteIndexResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteIndexResponse) ProtoMessage() {}
|
||||
func (*DeleteIndexResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_ef0691a44d1e275c, []int{21}
|
||||
}
|
||||
|
||||
func (m *DeleteIndexResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DeleteIndexResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DeleteIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DeleteIndexResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *DeleteIndexResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DeleteIndexResponse.Merge(m, src)
|
||||
}
|
||||
func (m *DeleteIndexResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_DeleteIndexResponse.Size(m)
|
||||
}
|
||||
func (m *DeleteIndexResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DeleteIndexResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DeleteIndexResponse proto.InternalMessageInfo
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*QueryPQLRequest)(nil), "pilosa.QueryPQLRequest")
|
||||
proto.RegisterType((*QuerySQLRequest)(nil), "pilosa.QuerySQLRequest")
|
||||
|
|
@ -852,60 +1187,79 @@ func init() {
|
|||
proto.RegisterType((*Uint64Array)(nil), "pilosa.Uint64Array")
|
||||
proto.RegisterType((*StringArray)(nil), "pilosa.StringArray")
|
||||
proto.RegisterType((*IdsOrKeys)(nil), "pilosa.IdsOrKeys")
|
||||
proto.RegisterType((*Index)(nil), "pilosa.Index")
|
||||
proto.RegisterType((*CreateIndexRequest)(nil), "pilosa.CreateIndexRequest")
|
||||
proto.RegisterType((*CreateIndexResponse)(nil), "pilosa.CreateIndexResponse")
|
||||
proto.RegisterType((*GetIndexRequest)(nil), "pilosa.GetIndexRequest")
|
||||
proto.RegisterType((*GetIndexResponse)(nil), "pilosa.GetIndexResponse")
|
||||
proto.RegisterType((*GetIndexesRequest)(nil), "pilosa.GetIndexesRequest")
|
||||
proto.RegisterType((*GetIndexesResponse)(nil), "pilosa.GetIndexesResponse")
|
||||
proto.RegisterType((*DeleteIndexRequest)(nil), "pilosa.DeleteIndexRequest")
|
||||
proto.RegisterType((*DeleteIndexResponse)(nil), "pilosa.DeleteIndexResponse")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("pilosa.proto", fileDescriptor_ef0691a44d1e275c) }
|
||||
|
||||
var fileDescriptor_ef0691a44d1e275c = []byte{
|
||||
// 761 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xcd, 0x72, 0xd3, 0x48,
|
||||
0x10, 0xb6, 0x22, 0xc5, 0xb6, 0xda, 0xf9, 0xdb, 0xc9, 0x6e, 0x56, 0x95, 0xda, 0xda, 0x55, 0x94,
|
||||
0xc3, 0x7a, 0x6b, 0xb7, 0x92, 0xac, 0x77, 0x03, 0x05, 0x84, 0x43, 0x12, 0xa0, 0x9c, 0x02, 0x0a,
|
||||
0x67, 0x42, 0x72, 0xe0, 0x36, 0xb6, 0xc6, 0x8e, 0x8a, 0xb1, 0xc6, 0xd6, 0x48, 0x09, 0x7e, 0x01,
|
||||
0xde, 0x87, 0x33, 0x17, 0x4e, 0x3c, 0x17, 0x35, 0x33, 0x1a, 0xd9, 0x0a, 0x98, 0x0a, 0x54, 0x71,
|
||||
0xf2, 0x74, 0x7f, 0x5f, 0xb7, 0xfa, 0x9b, 0xee, 0x69, 0xc3, 0xd2, 0x28, 0x62, 0x5c, 0x90, 0x9d,
|
||||
0x51, 0xc2, 0x53, 0x8e, 0xaa, 0xda, 0x0a, 0xee, 0xc1, 0xea, 0x69, 0x46, 0x93, 0x49, 0xe7, 0xf4,
|
||||
0x19, 0xa6, 0xe3, 0x8c, 0x8a, 0x14, 0xfd, 0x0c, 0x8b, 0x51, 0x1c, 0xd2, 0x37, 0x9e, 0xe5, 0x5b,
|
||||
0x4d, 0x17, 0x6b, 0x03, 0xad, 0x81, 0x3d, 0x1a, 0x33, 0x6f, 0x41, 0xf9, 0xe4, 0x31, 0xd8, 0xce,
|
||||
0x43, 0xcf, 0xa6, 0xa1, 0x6b, 0x60, 0x8b, 0x31, 0xcb, 0x03, 0xe5, 0x31, 0x78, 0x00, 0x8d, 0xb3,
|
||||
0x94, 0xa4, 0x99, 0x78, 0x9c, 0x24, 0x3c, 0x41, 0x08, 0x9c, 0x63, 0x1e, 0x52, 0xc5, 0x58, 0xc6,
|
||||
0xea, 0x8c, 0x3c, 0xa8, 0x3d, 0xa7, 0x42, 0x90, 0x01, 0xcd, 0xb3, 0x1b, 0x33, 0xf8, 0x60, 0x41,
|
||||
0x03, 0xf3, 0x6b, 0x4c, 0xc5, 0x88, 0xc7, 0x82, 0xa2, 0x7f, 0xa0, 0x76, 0x49, 0x49, 0x48, 0x13,
|
||||
0xe1, 0x59, 0xbe, 0xdd, 0x6c, 0xb4, 0xd0, 0x4e, 0x2e, 0xea, 0x98, 0xb3, 0x6c, 0x18, 0x9f, 0xc4,
|
||||
0x7d, 0x8e, 0x0d, 0x05, 0xed, 0x41, 0xad, 0xa7, 0xdc, 0xc2, 0x5b, 0x50, 0xec, 0x8d, 0x32, 0xdb,
|
||||
0xa4, 0xc5, 0x86, 0x86, 0xf6, 0x4b, 0xc5, 0x7a, 0xb6, 0x6f, 0x35, 0x1b, 0xad, 0x75, 0x13, 0x35,
|
||||
0x03, 0xe1, 0x92, 0xa8, 0x4d, 0xa8, 0x87, 0x59, 0x42, 0xd2, 0x88, 0xc7, 0x9e, 0xe3, 0x5b, 0x4d,
|
||||
0x1b, 0x17, 0x76, 0x70, 0x17, 0x6c, 0xcc, 0xaf, 0x67, 0x6b, 0xb1, 0x6e, 0x55, 0x4b, 0xf0, 0xce,
|
||||
0x82, 0xe5, 0x97, 0xa4, 0xcb, 0xe8, 0x77, 0xaa, 0xff, 0x03, 0x9c, 0x84, 0x5f, 0x1b, 0xe9, 0x0d,
|
||||
0x43, 0x95, 0xd7, 0xa9, 0x80, 0x1f, 0x21, 0xf6, 0x00, 0x60, 0x5a, 0x8a, 0xec, 0x75, 0x4c, 0x86,
|
||||
0x34, 0x9f, 0x06, 0x75, 0x56, 0xd1, 0x24, 0x25, 0xe9, 0x64, 0x64, 0x9a, 0x5d, 0xd8, 0xc1, 0x5b,
|
||||
0x1b, 0x56, 0xca, 0xb7, 0x81, 0x7e, 0x07, 0x57, 0xa4, 0x49, 0x14, 0x0f, 0x2e, 0x48, 0x3e, 0x55,
|
||||
0xed, 0x0a, 0x9e, 0xba, 0x24, 0x9e, 0x45, 0x71, 0x7a, 0xe7, 0x7f, 0x89, 0xcb, 0x7c, 0x8e, 0xc4,
|
||||
0x0b, 0x17, 0xfa, 0x0d, 0xea, 0x05, 0x2c, 0x05, 0xda, 0xed, 0x0a, 0x2e, 0x3c, 0x68, 0x13, 0x6a,
|
||||
0x5d, 0xce, 0x99, 0x04, 0xa5, 0x92, 0x7a, 0xbb, 0x82, 0x8d, 0x43, 0x61, 0x8c, 0x77, 0x25, 0xb6,
|
||||
0xe8, 0x5b, 0xcd, 0x25, 0x85, 0x69, 0x07, 0x7a, 0x08, 0x2b, 0xfa, 0x13, 0x87, 0x49, 0x42, 0x26,
|
||||
0x92, 0x52, 0x2d, 0x5f, 0xde, 0xf9, 0x14, 0x6d, 0x57, 0xf0, 0x0d, 0xb2, 0x0c, 0xd7, 0x0a, 0x8a,
|
||||
0xf0, 0xda, 0xcd, 0xbb, 0x2f, 0x50, 0x19, 0x5e, 0x26, 0x23, 0x1f, 0xa0, 0xcf, 0x38, 0xc9, 0x55,
|
||||
0xd5, 0x7d, 0xab, 0x69, 0xb5, 0x2b, 0x78, 0xc6, 0x87, 0xfe, 0x05, 0x08, 0x69, 0x2f, 0x1a, 0x12,
|
||||
0x25, 0xcd, 0x55, 0xc9, 0x57, 0x4d, 0xf2, 0x47, 0x1a, 0x91, 0x21, 0x53, 0xd2, 0x51, 0x03, 0x5c,
|
||||
0x3d, 0x78, 0x17, 0x84, 0x05, 0xfb, 0x50, 0xcb, 0x59, 0x72, 0x17, 0x5c, 0x11, 0x96, 0xe9, 0x26,
|
||||
0xda, 0x58, 0x1b, 0xd2, 0x2b, 0x7a, 0x84, 0xe9, 0x16, 0xda, 0x58, 0x1b, 0xc1, 0x7b, 0x0b, 0x56,
|
||||
0x4e, 0x62, 0x31, 0xa2, 0xbd, 0xf4, 0xeb, 0xab, 0xe4, 0xef, 0xd9, 0x87, 0x29, 0x8b, 0xfb, 0xc9,
|
||||
0x14, 0x77, 0x12, 0x8a, 0x17, 0xc9, 0x53, 0x3a, 0x11, 0xd3, 0x37, 0x19, 0xc0, 0x52, 0x3f, 0x62,
|
||||
0x29, 0x4d, 0x9e, 0x44, 0x94, 0x85, 0xc2, 0xb3, 0x7d, 0xbb, 0xe9, 0xe2, 0x92, 0x4f, 0x7e, 0x86,
|
||||
0x45, 0xc3, 0x28, 0x55, 0x6d, 0x74, 0xb0, 0x36, 0xd0, 0x06, 0x54, 0x79, 0xbf, 0x2f, 0x68, 0xaa,
|
||||
0x3a, 0xe8, 0xe0, 0xdc, 0x92, 0xec, 0xb1, 0xdc, 0x5b, 0xaa, 0x6b, 0x2e, 0xd6, 0x46, 0xb0, 0x05,
|
||||
0x8d, 0x99, 0xb6, 0xc9, 0xe1, 0xbd, 0x22, 0x4c, 0xbf, 0x34, 0x07, 0xab, 0xb3, 0xa4, 0xcc, 0xb4,
|
||||
0xa6, 0x44, 0x71, 0x73, 0xca, 0x00, 0xdc, 0x42, 0x03, 0xfa, 0x13, 0xec, 0x28, 0x14, 0x4a, 0xfb,
|
||||
0xdc, 0xe1, 0x90, 0x0c, 0xf4, 0x17, 0x38, 0xaf, 0xe9, 0xc4, 0xdc, 0xc6, 0x9c, 0x39, 0x50, 0x94,
|
||||
0xa3, 0x2a, 0x38, 0xf2, 0xb1, 0xb4, 0x3e, 0x2e, 0x40, 0xb5, 0xa3, 0x68, 0xe8, 0x00, 0xea, 0x66,
|
||||
0x0f, 0xa3, 0x5f, 0x4d, 0xec, 0x8d, 0xcd, 0xbc, 0xb9, 0x3e, 0xbb, 0x00, 0xf2, 0xe7, 0x15, 0x54,
|
||||
0xf6, 0x2c, 0x74, 0x08, 0xcb, 0x86, 0x7b, 0x1e, 0x93, 0x64, 0x32, 0x3f, 0xc5, 0x2f, 0x06, 0x28,
|
||||
0xad, 0xa5, 0xa0, 0x52, 0x14, 0xd0, 0xf9, 0xac, 0x80, 0xce, 0x37, 0x14, 0xd0, 0xf9, 0x72, 0x01,
|
||||
0x9d, 0x5b, 0x14, 0x70, 0x1f, 0x6a, 0xf9, 0xe0, 0xa1, 0x62, 0xaf, 0x96, 0x27, 0x71, 0xee, 0xe7,
|
||||
0x8f, 0xb6, 0x5f, 0x6d, 0x0d, 0xa2, 0xf4, 0x32, 0xeb, 0xee, 0xf4, 0xf8, 0x70, 0x57, 0x93, 0xcc,
|
||||
0xcf, 0x55, 0x6b, 0x57, 0xfd, 0x5b, 0x76, 0xab, 0xea, 0xe7, 0xbf, 0x4f, 0x01, 0x00, 0x00, 0xff,
|
||||
0xff, 0x18, 0x84, 0x1c, 0xb4, 0x44, 0x07, 0x00, 0x00,
|
||||
// 923 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xdb, 0x72, 0x1b, 0x45,
|
||||
0x10, 0xd5, 0x66, 0xd7, 0xba, 0xf4, 0xfa, 0x96, 0x31, 0x31, 0x8b, 0x42, 0x81, 0x32, 0x2e, 0x2a,
|
||||
0xa2, 0xa0, 0x9c, 0x20, 0x08, 0x29, 0xc0, 0x29, 0x2a, 0x76, 0x02, 0x72, 0x01, 0x85, 0x32, 0x21,
|
||||
0x79, 0xe0, 0x6d, 0x24, 0x8d, 0x9c, 0x2d, 0x56, 0x3b, 0xf2, 0xce, 0xc8, 0x46, 0x3f, 0xc0, 0xff,
|
||||
0xf0, 0xcc, 0x0b, 0xdf, 0xc2, 0x97, 0x50, 0x73, 0xdb, 0x8b, 0x2e, 0x24, 0x50, 0xc5, 0x93, 0xa6,
|
||||
0xfb, 0x9c, 0xee, 0xe9, 0xd3, 0x3d, 0x33, 0x5a, 0xd8, 0x9e, 0xc5, 0x09, 0x17, 0xf4, 0x78, 0x96,
|
||||
0x71, 0xc9, 0x51, 0xdd, 0x58, 0xf8, 0x0b, 0xd8, 0x7b, 0x36, 0x67, 0xd9, 0x62, 0xf0, 0xec, 0x7b,
|
||||
0xc2, 0x2e, 0xe7, 0x4c, 0x48, 0xf4, 0x16, 0x6c, 0xc5, 0xe9, 0x98, 0xfd, 0x1a, 0x79, 0x1d, 0xaf,
|
||||
0xdb, 0x22, 0xc6, 0x40, 0xfb, 0xe0, 0xcf, 0x2e, 0x93, 0xe8, 0x86, 0xf6, 0xa9, 0x25, 0x3e, 0xb2,
|
||||
0xa1, 0xcf, 0x8b, 0xd0, 0x7d, 0xf0, 0xc5, 0x65, 0x62, 0x03, 0xd5, 0x12, 0x7f, 0x05, 0xe1, 0x73,
|
||||
0x49, 0xe5, 0x5c, 0x3c, 0xcd, 0x32, 0x9e, 0x21, 0x04, 0xc1, 0x19, 0x1f, 0x33, 0xcd, 0xd8, 0x21,
|
||||
0x7a, 0x8d, 0x22, 0x68, 0xfc, 0xc0, 0x84, 0xa0, 0x17, 0xcc, 0x66, 0x77, 0x26, 0xfe, 0xd3, 0x83,
|
||||
0x90, 0xf0, 0x6b, 0xc2, 0xc4, 0x8c, 0xa7, 0x82, 0xa1, 0x8f, 0xa1, 0xf1, 0x8a, 0xd1, 0x31, 0xcb,
|
||||
0x44, 0xe4, 0x75, 0xfc, 0x6e, 0xd8, 0x43, 0xc7, 0x56, 0xd4, 0x19, 0x4f, 0xe6, 0xd3, 0xf4, 0x3c,
|
||||
0x9d, 0x70, 0xe2, 0x28, 0xe8, 0x3e, 0x34, 0x46, 0xda, 0x2d, 0xa2, 0x1b, 0x9a, 0x7d, 0x58, 0x65,
|
||||
0xbb, 0xb4, 0xc4, 0xd1, 0xd0, 0x83, 0x4a, 0xb1, 0x91, 0xdf, 0xf1, 0xba, 0x61, 0xef, 0xc0, 0x45,
|
||||
0x95, 0x20, 0x52, 0x11, 0xd5, 0x86, 0xe6, 0x78, 0x9e, 0x51, 0x19, 0xf3, 0x34, 0x0a, 0x3a, 0x5e,
|
||||
0xd7, 0x27, 0xb9, 0x8d, 0x1f, 0x82, 0x4f, 0xf8, 0x75, 0xb9, 0x16, 0xef, 0x8d, 0x6a, 0xc1, 0xbf,
|
||||
0x7b, 0xb0, 0xf3, 0x13, 0x1d, 0x26, 0xec, 0x3f, 0xaa, 0x7f, 0x1f, 0x82, 0x8c, 0x5f, 0x3b, 0xe9,
|
||||
0xa1, 0xa3, 0xaa, 0x76, 0x6a, 0xe0, 0xff, 0x10, 0x7b, 0x02, 0x50, 0x94, 0xa2, 0x66, 0x9d, 0xd2,
|
||||
0x29, 0xb3, 0xa7, 0x41, 0xaf, 0x75, 0x34, 0x95, 0x54, 0x2e, 0x66, 0x6e, 0xd8, 0xb9, 0x8d, 0x7f,
|
||||
0xf3, 0x61, 0xb7, 0xda, 0x0d, 0xf4, 0x1e, 0xb4, 0x84, 0xcc, 0xe2, 0xf4, 0xe2, 0x25, 0xb5, 0xa7,
|
||||
0xaa, 0x5f, 0x23, 0x85, 0x4b, 0xe1, 0xf3, 0x38, 0x95, 0x9f, 0x7f, 0xa6, 0x70, 0x95, 0x2f, 0x50,
|
||||
0x78, 0xee, 0x42, 0xef, 0x42, 0x33, 0x87, 0x95, 0x40, 0xbf, 0x5f, 0x23, 0xb9, 0x07, 0xb5, 0xa1,
|
||||
0x31, 0xe4, 0x3c, 0x51, 0xa0, 0x52, 0xd2, 0xec, 0xd7, 0x88, 0x73, 0x68, 0x2c, 0xe1, 0x43, 0x85,
|
||||
0x6d, 0x75, 0xbc, 0xee, 0xb6, 0xc6, 0x8c, 0x03, 0x3d, 0x82, 0x5d, 0xb3, 0xc5, 0xe3, 0x2c, 0xa3,
|
||||
0x0b, 0x45, 0xa9, 0x57, 0x9b, 0xf7, 0xa2, 0x40, 0xfb, 0x35, 0xb2, 0x44, 0x56, 0xe1, 0x46, 0x41,
|
||||
0x1e, 0xde, 0x58, 0xee, 0x7d, 0x8e, 0xaa, 0xf0, 0x2a, 0x19, 0x75, 0x00, 0x26, 0x09, 0xa7, 0x56,
|
||||
0x55, 0xb3, 0xe3, 0x75, 0xbd, 0x7e, 0x8d, 0x94, 0x7c, 0xe8, 0x13, 0x80, 0x31, 0x1b, 0xc5, 0x53,
|
||||
0xaa, 0xa5, 0xb5, 0x74, 0xf2, 0x3d, 0x97, 0xfc, 0x89, 0x41, 0x54, 0x48, 0x41, 0x3a, 0x0d, 0xa1,
|
||||
0x65, 0x0e, 0xde, 0x4b, 0x9a, 0xe0, 0x07, 0xd0, 0xb0, 0x2c, 0xf5, 0x16, 0x5c, 0xd1, 0x64, 0x6e,
|
||||
0x86, 0xe8, 0x13, 0x63, 0x28, 0xaf, 0x18, 0xd1, 0xc4, 0x8c, 0xd0, 0x27, 0xc6, 0xc0, 0x7f, 0x78,
|
||||
0xb0, 0x7b, 0x9e, 0x8a, 0x19, 0x1b, 0xc9, 0x7f, 0x7e, 0x4a, 0x3e, 0x2a, 0x5f, 0x4c, 0x55, 0xdc,
|
||||
0x4d, 0x57, 0xdc, 0xf9, 0x58, 0xfc, 0x98, 0x7d, 0xc7, 0x16, 0xa2, 0xb8, 0x93, 0x18, 0xb6, 0x27,
|
||||
0x71, 0x22, 0x59, 0xf6, 0x4d, 0xcc, 0x92, 0xb1, 0x88, 0xfc, 0x8e, 0xdf, 0x6d, 0x91, 0x8a, 0x4f,
|
||||
0x6d, 0x93, 0xc4, 0xd3, 0x58, 0xea, 0x31, 0x06, 0xc4, 0x18, 0xe8, 0x10, 0xea, 0x7c, 0x32, 0x11,
|
||||
0x4c, 0xea, 0x09, 0x06, 0xc4, 0x5a, 0x8a, 0x7d, 0xa9, 0xde, 0x2d, 0x3d, 0xb5, 0x16, 0x31, 0x06,
|
||||
0xbe, 0x03, 0x61, 0x69, 0x6c, 0xea, 0xf0, 0x5e, 0xd1, 0xc4, 0xdc, 0xb4, 0x80, 0xe8, 0xb5, 0xa2,
|
||||
0x94, 0x46, 0x53, 0xa1, 0xb4, 0x2c, 0xe5, 0x02, 0x5a, 0xb9, 0x06, 0x74, 0x17, 0xfc, 0x78, 0x2c,
|
||||
0xb4, 0xf6, 0x8d, 0x87, 0x43, 0x31, 0xd0, 0x87, 0x10, 0xfc, 0xc2, 0x16, 0xae, 0x1b, 0x1b, 0xce,
|
||||
0x81, 0xa6, 0x9c, 0xd6, 0x21, 0xd0, 0x97, 0xe5, 0x36, 0x6c, 0x9d, 0xeb, 0x66, 0xae, 0xb9, 0x65,
|
||||
0xf8, 0x04, 0xd0, 0x59, 0xc6, 0xa8, 0x64, 0x9a, 0xe2, 0x86, 0xb1, 0xee, 0x3e, 0xa2, 0xd2, 0xce,
|
||||
0x4d, 0xb3, 0x05, 0xbe, 0x05, 0x07, 0x95, 0x68, 0x73, 0x17, 0xf1, 0x07, 0xb0, 0xf7, 0x2d, 0x93,
|
||||
0xaf, 0xcb, 0x88, 0x1f, 0xc2, 0x7e, 0x41, 0xb3, 0xd7, 0xf8, 0xa8, 0x7c, 0x0c, 0xc2, 0xde, 0x4e,
|
||||
0x3e, 0x6e, 0xcd, 0x32, 0x18, 0x3e, 0x80, 0x9b, 0x2e, 0x90, 0x09, 0xbb, 0x03, 0x7e, 0x04, 0xa8,
|
||||
0xec, 0xb4, 0xf9, 0xee, 0x42, 0x23, 0x36, 0x2e, 0xfb, 0x12, 0x2e, 0x65, 0x74, 0x28, 0xee, 0x02,
|
||||
0x7a, 0xc2, 0x12, 0xf6, 0xfa, 0x46, 0x28, 0xd1, 0x15, 0xa6, 0xd9, 0xa9, 0xf7, 0x57, 0x00, 0xf5,
|
||||
0x81, 0x4e, 0x8d, 0xfa, 0x10, 0x96, 0xda, 0x82, 0xda, 0xf9, 0xe3, 0xbb, 0xd2, 0xe9, 0xf6, 0xed,
|
||||
0xb5, 0x98, 0xed, 0x63, 0x0d, 0x3d, 0x05, 0x28, 0x44, 0xa1, 0x77, 0x1c, 0x79, 0x45, 0x7d, 0xbb,
|
||||
0xbd, 0x0e, 0xca, 0xd3, 0x7c, 0x0d, 0x4d, 0xe7, 0x47, 0x6f, 0x2f, 0x33, 0x5d, 0x8a, 0x68, 0x15,
|
||||
0xc8, 0x13, 0xf4, 0x21, 0x2c, 0x69, 0x2e, 0x14, 0xad, 0xb6, 0xac, 0x50, 0xb4, 0xa6, 0x49, 0xb8,
|
||||
0x86, 0x4e, 0xa0, 0xe9, 0x3e, 0x05, 0x8a, 0x52, 0x96, 0x3e, 0x0e, 0xda, 0x07, 0xe5, 0xff, 0xa0,
|
||||
0x3c, 0xf6, 0xbe, 0x87, 0x1e, 0xc3, 0x8e, 0xe3, 0xbe, 0x48, 0x69, 0xb6, 0xd8, 0x9c, 0xe2, 0x96,
|
||||
0x03, 0x2a, 0xff, 0x8c, 0xa5, 0x02, 0x06, 0x2b, 0x05, 0x0c, 0xfe, 0x45, 0x01, 0x83, 0xf5, 0x05,
|
||||
0x0c, 0xde, 0xa0, 0x80, 0x2f, 0xa1, 0x61, 0xdf, 0x3e, 0x74, 0x58, 0x1c, 0xc6, 0xf2, 0x63, 0xb8,
|
||||
0x71, 0xfb, 0xd3, 0xa3, 0x9f, 0xef, 0x5c, 0xc4, 0xf2, 0xd5, 0x7c, 0x78, 0x3c, 0xe2, 0xd3, 0x7b,
|
||||
0x86, 0xe4, 0x7e, 0xae, 0x7a, 0xf7, 0xf4, 0x07, 0xdb, 0xb0, 0xae, 0x7f, 0x3e, 0xfd, 0x3b, 0x00,
|
||||
0x00, 0xff, 0xff, 0x75, 0x3f, 0x36, 0x94, 0xc7, 0x09, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
@ -920,6 +1274,10 @@ const _ = grpc.SupportPackageIsVersion4
|
|||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
||||
type PilosaClient interface {
|
||||
CreateIndex(ctx context.Context, in *CreateIndexRequest, opts ...grpc.CallOption) (*CreateIndexResponse, error)
|
||||
GetIndexes(ctx context.Context, in *GetIndexesRequest, opts ...grpc.CallOption) (*GetIndexesResponse, error)
|
||||
GetIndex(ctx context.Context, in *GetIndexRequest, opts ...grpc.CallOption) (*GetIndexResponse, error)
|
||||
DeleteIndex(ctx context.Context, in *DeleteIndexRequest, opts ...grpc.CallOption) (*DeleteIndexResponse, error)
|
||||
QuerySQL(ctx context.Context, in *QuerySQLRequest, opts ...grpc.CallOption) (Pilosa_QuerySQLClient, error)
|
||||
QuerySQLUnary(ctx context.Context, in *QuerySQLRequest, opts ...grpc.CallOption) (*TableResponse, error)
|
||||
QueryPQL(ctx context.Context, in *QueryPQLRequest, opts ...grpc.CallOption) (Pilosa_QueryPQLClient, error)
|
||||
|
|
@ -935,6 +1293,42 @@ func NewPilosaClient(cc *grpc.ClientConn) PilosaClient {
|
|||
return &pilosaClient{cc}
|
||||
}
|
||||
|
||||
func (c *pilosaClient) CreateIndex(ctx context.Context, in *CreateIndexRequest, opts ...grpc.CallOption) (*CreateIndexResponse, error) {
|
||||
out := new(CreateIndexResponse)
|
||||
err := c.cc.Invoke(ctx, "/pilosa.Pilosa/CreateIndex", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *pilosaClient) GetIndexes(ctx context.Context, in *GetIndexesRequest, opts ...grpc.CallOption) (*GetIndexesResponse, error) {
|
||||
out := new(GetIndexesResponse)
|
||||
err := c.cc.Invoke(ctx, "/pilosa.Pilosa/GetIndexes", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *pilosaClient) GetIndex(ctx context.Context, in *GetIndexRequest, opts ...grpc.CallOption) (*GetIndexResponse, error) {
|
||||
out := new(GetIndexResponse)
|
||||
err := c.cc.Invoke(ctx, "/pilosa.Pilosa/GetIndex", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *pilosaClient) DeleteIndex(ctx context.Context, in *DeleteIndexRequest, opts ...grpc.CallOption) (*DeleteIndexResponse, error) {
|
||||
out := new(DeleteIndexResponse)
|
||||
err := c.cc.Invoke(ctx, "/pilosa.Pilosa/DeleteIndex", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *pilosaClient) QuerySQL(ctx context.Context, in *QuerySQLRequest, opts ...grpc.CallOption) (Pilosa_QuerySQLClient, error) {
|
||||
stream, err := c.cc.NewStream(ctx, &_Pilosa_serviceDesc.Streams[0], "/pilosa.Pilosa/QuerySQL", opts...)
|
||||
if err != nil {
|
||||
|
|
@ -1051,6 +1445,10 @@ func (x *pilosaInspectClient) Recv() (*RowResponse, error) {
|
|||
|
||||
// PilosaServer is the server API for Pilosa service.
|
||||
type PilosaServer interface {
|
||||
CreateIndex(context.Context, *CreateIndexRequest) (*CreateIndexResponse, error)
|
||||
GetIndexes(context.Context, *GetIndexesRequest) (*GetIndexesResponse, error)
|
||||
GetIndex(context.Context, *GetIndexRequest) (*GetIndexResponse, error)
|
||||
DeleteIndex(context.Context, *DeleteIndexRequest) (*DeleteIndexResponse, error)
|
||||
QuerySQL(*QuerySQLRequest, Pilosa_QuerySQLServer) error
|
||||
QuerySQLUnary(context.Context, *QuerySQLRequest) (*TableResponse, error)
|
||||
QueryPQL(*QueryPQLRequest, Pilosa_QueryPQLServer) error
|
||||
|
|
@ -1062,6 +1460,18 @@ type PilosaServer interface {
|
|||
type UnimplementedPilosaServer struct {
|
||||
}
|
||||
|
||||
func (*UnimplementedPilosaServer) CreateIndex(ctx context.Context, req *CreateIndexRequest) (*CreateIndexResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method CreateIndex not implemented")
|
||||
}
|
||||
func (*UnimplementedPilosaServer) GetIndexes(ctx context.Context, req *GetIndexesRequest) (*GetIndexesResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetIndexes not implemented")
|
||||
}
|
||||
func (*UnimplementedPilosaServer) GetIndex(ctx context.Context, req *GetIndexRequest) (*GetIndexResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetIndex not implemented")
|
||||
}
|
||||
func (*UnimplementedPilosaServer) DeleteIndex(ctx context.Context, req *DeleteIndexRequest) (*DeleteIndexResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method DeleteIndex not implemented")
|
||||
}
|
||||
func (*UnimplementedPilosaServer) QuerySQL(req *QuerySQLRequest, srv Pilosa_QuerySQLServer) error {
|
||||
return status.Errorf(codes.Unimplemented, "method QuerySQL not implemented")
|
||||
}
|
||||
|
|
@ -1082,6 +1492,78 @@ func RegisterPilosaServer(s *grpc.Server, srv PilosaServer) {
|
|||
s.RegisterService(&_Pilosa_serviceDesc, srv)
|
||||
}
|
||||
|
||||
func _Pilosa_CreateIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(CreateIndexRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(PilosaServer).CreateIndex(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/pilosa.Pilosa/CreateIndex",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(PilosaServer).CreateIndex(ctx, req.(*CreateIndexRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Pilosa_GetIndexes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(GetIndexesRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(PilosaServer).GetIndexes(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/pilosa.Pilosa/GetIndexes",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(PilosaServer).GetIndexes(ctx, req.(*GetIndexesRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Pilosa_GetIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(GetIndexRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(PilosaServer).GetIndex(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/pilosa.Pilosa/GetIndex",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(PilosaServer).GetIndex(ctx, req.(*GetIndexRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Pilosa_DeleteIndex_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(DeleteIndexRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(PilosaServer).DeleteIndex(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/pilosa.Pilosa/DeleteIndex",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(PilosaServer).DeleteIndex(ctx, req.(*DeleteIndexRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Pilosa_QuerySQL_Handler(srv interface{}, stream grpc.ServerStream) error {
|
||||
m := new(QuerySQLRequest)
|
||||
if err := stream.RecvMsg(m); err != nil {
|
||||
|
|
@ -1185,6 +1667,22 @@ var _Pilosa_serviceDesc = grpc.ServiceDesc{
|
|||
ServiceName: "pilosa.Pilosa",
|
||||
HandlerType: (*PilosaServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "CreateIndex",
|
||||
Handler: _Pilosa_CreateIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetIndexes",
|
||||
Handler: _Pilosa_GetIndexes_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetIndex",
|
||||
Handler: _Pilosa_GetIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "DeleteIndex",
|
||||
Handler: _Pilosa_DeleteIndex_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "QuerySQLUnary",
|
||||
Handler: _Pilosa_QuerySQLUnary_Handler,
|
||||
|
|
|
|||
|
|
@ -85,7 +85,45 @@ message IdsOrKeys {
|
|||
}
|
||||
}
|
||||
|
||||
message Index {
|
||||
string name = 1;
|
||||
}
|
||||
|
||||
message CreateIndexRequest {
|
||||
string name = 1;
|
||||
bool keys = 2;
|
||||
}
|
||||
|
||||
message CreateIndexResponse {
|
||||
}
|
||||
|
||||
message GetIndexRequest {
|
||||
string name = 1;
|
||||
}
|
||||
|
||||
message GetIndexResponse {
|
||||
Index index = 1;
|
||||
}
|
||||
|
||||
message GetIndexesRequest {
|
||||
}
|
||||
|
||||
message GetIndexesResponse {
|
||||
repeated Index indexes = 1;
|
||||
}
|
||||
|
||||
message DeleteIndexRequest {
|
||||
string name = 1;
|
||||
}
|
||||
|
||||
message DeleteIndexResponse {
|
||||
}
|
||||
|
||||
service Pilosa {
|
||||
rpc CreateIndex(CreateIndexRequest) returns (CreateIndexResponse) {};
|
||||
rpc GetIndexes(GetIndexesRequest) returns (GetIndexesResponse) {};
|
||||
rpc GetIndex(GetIndexRequest) returns (GetIndexResponse) {};
|
||||
rpc DeleteIndex(DeleteIndexRequest) returns (DeleteIndexResponse) {};
|
||||
rpc QuerySQL(QuerySQLRequest) returns (stream RowResponse) {};
|
||||
rpc QuerySQLUnary(QuerySQLRequest) returns (TableResponse) {};
|
||||
rpc QueryPQL(QueryPQLRequest) returns (stream RowResponse) {};
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ func errToStatusError(err error) error {
|
|||
}
|
||||
|
||||
// Check error string.
|
||||
switch errors.Cause(err) {
|
||||
switch cause := errors.Cause(err); cause {
|
||||
case pilosa.ErrIndexNotFound,
|
||||
pilosa.ErrFieldNotFound,
|
||||
pilosa.ErrForeignIndexNotFound,
|
||||
|
|
@ -123,6 +123,10 @@ func errToStatusError(err error) error {
|
|||
pilosa.ErrTooManyWrites,
|
||||
pilosa.ErrNodeIDNotExists:
|
||||
return status.Error(codes.Internal, err.Error())
|
||||
default:
|
||||
if _, ok := cause.(pilosa.ConflictError); ok {
|
||||
return status.Error(codes.AlreadyExists, err.Error())
|
||||
}
|
||||
}
|
||||
|
||||
return status.Error(codes.Unknown, err.Error())
|
||||
|
|
@ -267,6 +271,47 @@ func (h *GRPCHandler) QueryPQLUnary(ctx context.Context, req *pb.QueryPQLRequest
|
|||
return table, errToStatusError(nil)
|
||||
}
|
||||
|
||||
// CreateIndex creates a new Index
|
||||
func (h *GRPCHandler) CreateIndex(ctx context.Context, req *pb.CreateIndexRequest) (*pb.CreateIndexResponse, error) {
|
||||
// Always enable TrackExistence for gRPC-created indexes
|
||||
opts := pilosa.IndexOptions{Keys: req.Keys, TrackExistence: true}
|
||||
_, err := h.api.CreateIndex(ctx, req.Name, opts)
|
||||
if err != nil {
|
||||
return nil, errToStatusError(err)
|
||||
}
|
||||
return &pb.CreateIndexResponse{}, nil
|
||||
}
|
||||
|
||||
// GetIndex returns a single Index given a name
|
||||
func (h *GRPCHandler) GetIndex(ctx context.Context, req *pb.GetIndexRequest) (*pb.GetIndexResponse, error) {
|
||||
schema := h.api.Schema(ctx)
|
||||
for _, index := range schema {
|
||||
if req.Name == index.Name {
|
||||
return &pb.GetIndexResponse{Index: &pb.Index{Name: index.Name}}, nil
|
||||
}
|
||||
}
|
||||
return nil, status.Error(codes.NotFound, fmt.Sprintf("Index with name %s not found", req.Name))
|
||||
}
|
||||
|
||||
// GetIndexes returns a list of all Indexes
|
||||
func (h *GRPCHandler) GetIndexes(ctx context.Context, req *pb.GetIndexesRequest) (*pb.GetIndexesResponse, error) {
|
||||
schema := h.api.Schema(ctx)
|
||||
indexes := make([]*pb.Index, len(schema))
|
||||
for i, index := range schema {
|
||||
indexes[i] = &pb.Index{Name: index.Name}
|
||||
}
|
||||
return &pb.GetIndexesResponse{Indexes: indexes}, nil
|
||||
}
|
||||
|
||||
// DeleteIndex deletes an Index
|
||||
func (h *GRPCHandler) DeleteIndex(ctx context.Context, req *pb.DeleteIndexRequest) (*pb.DeleteIndexResponse, error) {
|
||||
err := h.api.DeleteIndex(ctx, req.Name)
|
||||
if err != nil {
|
||||
return nil, errToStatusError(err)
|
||||
}
|
||||
return &pb.DeleteIndexResponse{}, nil
|
||||
}
|
||||
|
||||
// VDSMGRPCHandler contains methods which handle the various gRPC requests, ported from VDSM.
|
||||
type VDSMGRPCHandler struct {
|
||||
grpcHandler *GRPCHandler
|
||||
|
|
|
|||
|
|
@ -986,6 +986,171 @@ func TestQuerySQLUnaryWithError(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
func TestCRUDIndexes(t *testing.T) {
|
||||
m := test.RunCommand(t)
|
||||
defer m.Close()
|
||||
|
||||
ctx := context.Background()
|
||||
gh := server.NewGRPCHandler(m.API)
|
||||
|
||||
t.Run("CreateIndex", func(t *testing.T) {
|
||||
// Try CreateIndex for testindex1
|
||||
_, err := gh.CreateIndex(ctx, &pb.CreateIndexRequest{Name: "testindex1", Keys: true})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
schema := m.API.Schema(ctx)
|
||||
if len(schema) != 1 {
|
||||
t.Fatal("Schema should include one index")
|
||||
}
|
||||
if schema[0].Name != "testindex1" {
|
||||
t.Fatal("Index name not set correctly")
|
||||
}
|
||||
if schema[0].Options.Keys != true {
|
||||
t.Fatal("Index Keys not set correctly")
|
||||
}
|
||||
if schema[0].Options.TrackExistence != true {
|
||||
t.Fatal("Index TrackExistence should be true when created by gRPC")
|
||||
}
|
||||
|
||||
// Try CreateIndex for testindex2
|
||||
_, err = gh.CreateIndex(ctx, &pb.CreateIndexRequest{Name: "testindex2"})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
schema = m.API.Schema(ctx)
|
||||
if len(schema) != 2 {
|
||||
t.Fatal("Schema should include two indexes")
|
||||
}
|
||||
|
||||
_ = m.API.DeleteIndex(ctx, "testindex1")
|
||||
|
||||
schema = m.API.Schema(ctx)
|
||||
if len(schema) != 1 {
|
||||
t.Fatal("Schema should include one index")
|
||||
}
|
||||
if schema[0].Name != "testindex2" {
|
||||
t.Fatal("Index name not set correctly")
|
||||
}
|
||||
if schema[0].Options.Keys != false {
|
||||
t.Fatal("Index Keys not set correctly")
|
||||
}
|
||||
|
||||
// Check errors for CreateIndex: create index with same name
|
||||
_, err = gh.CreateIndex(ctx, &pb.CreateIndexRequest{Name: "testindex2"})
|
||||
errStatus, _ := status.FromError(err)
|
||||
if errStatus.Code() != codes.AlreadyExists {
|
||||
t.Fatalf("Error code should be codes.AlreadyExists, but is %v", errStatus.Code())
|
||||
}
|
||||
|
||||
// Check errors for CreateIndex: create index with no name
|
||||
_, err = gh.CreateIndex(ctx, &pb.CreateIndexRequest{Name: ""})
|
||||
errStatus, _ = status.FromError(err)
|
||||
if errStatus.Code() != codes.Unknown {
|
||||
t.Fatalf("Error code should be codes.Unknown, but is %v", errStatus.Code())
|
||||
}
|
||||
|
||||
// Check errors for CreateIndex: create index with invalid name
|
||||
_, err = gh.CreateIndex(ctx, &pb.CreateIndexRequest{Name: "💩"})
|
||||
errStatus, _ = status.FromError(err)
|
||||
if errStatus.Code() != codes.FailedPrecondition {
|
||||
t.Fatalf("Error code should be codes.FailedPrecondition, but is %v", errStatus.Code())
|
||||
}
|
||||
|
||||
_ = m.API.DeleteIndex(ctx, "testindex2")
|
||||
})
|
||||
|
||||
t.Run("GetIndex", func(t *testing.T) {
|
||||
_, err := m.API.CreateIndex(ctx, "testindex1", pilosa.IndexOptions{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// Check GetIndex for testindex1
|
||||
resp, err := gh.GetIndex(ctx, &pb.GetIndexRequest{Name: "testindex1"})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if resp.Index.Name != "testindex1" {
|
||||
t.Fatalf("Index name does not match: %s", resp.Index.Name)
|
||||
}
|
||||
|
||||
// Check errors for GetIndex: get index that doesn't exist
|
||||
_, err = gh.GetIndex(ctx, &pb.GetIndexRequest{Name: "wrongname"})
|
||||
errStatus, _ := status.FromError(err)
|
||||
if errStatus.Code() != codes.NotFound {
|
||||
t.Fatalf("Error code should be codes.NotFound, but is %v", errStatus.Code())
|
||||
}
|
||||
|
||||
// Check errors for GetIndex: get index with invalid name
|
||||
_, err = gh.GetIndex(ctx, &pb.GetIndexRequest{Name: "💩"})
|
||||
errStatus, _ = status.FromError(err)
|
||||
if errStatus.Code() != codes.NotFound {
|
||||
t.Fatalf("Error code should be codes.NotFound, but is %v", errStatus.Code())
|
||||
}
|
||||
_ = m.API.DeleteIndex(ctx, "testindex1")
|
||||
})
|
||||
|
||||
t.Run("GetIndexes", func(t *testing.T) {
|
||||
_, err := m.API.CreateIndex(ctx, "testindex1", pilosa.IndexOptions{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// Check GetIndexes
|
||||
resp2, err := gh.GetIndexes(ctx, &pb.GetIndexesRequest{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if len(resp2.Indexes) != 1 && resp2.Indexes[0].Name != "testindex1" {
|
||||
t.Fatalf("GetIndexes did not produce the correct result set: %v", resp2.Indexes)
|
||||
}
|
||||
|
||||
_, err = m.API.CreateIndex(ctx, "testindex2", pilosa.IndexOptions{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// Check GetIndexes again
|
||||
resp, err := gh.GetIndexes(ctx, &pb.GetIndexesRequest{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if len(resp.Indexes) != 2 {
|
||||
t.Fatalf("GetIndexes did not produce the correct result set: %v", resp.Indexes)
|
||||
}
|
||||
_ = m.API.DeleteIndex(ctx, "testindex1")
|
||||
_ = m.API.DeleteIndex(ctx, "testindex2")
|
||||
})
|
||||
|
||||
t.Run("DeleteIndexes", func(t *testing.T) {
|
||||
_, err := m.API.CreateIndex(ctx, "testindex1", pilosa.IndexOptions{})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
// Try to delete index
|
||||
_, err = gh.DeleteIndex(ctx, &pb.DeleteIndexRequest{Name: "testindex1"})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
schema := m.API.Schema(ctx)
|
||||
if len(schema) != 0 {
|
||||
t.Fatal("Schema should include no index")
|
||||
}
|
||||
|
||||
// Try to delete non-existing index
|
||||
_, err = gh.DeleteIndex(ctx, &pb.DeleteIndexRequest{Name: "doesnotexist"})
|
||||
errStatus, _ := status.FromError(err)
|
||||
if errStatus.Code() != codes.NotFound {
|
||||
t.Fatalf("Error code should be codes.NotFound, but is %v", errStatus.Code())
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
func setUpTestQuerySQLUnary(ctx context.Context, t *testing.T) (gh *server.GRPCHandler, tearDownFunc func()) {
|
||||
t.Helper()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue