compilerpb

package
v0.0.0-...-73c8340 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 23, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthCompilerStatus        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCompilerStatus          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupCompilerStatus = fmt.Errorf("proto: unexpected end of group")
)

Functions

This section is empty.

Types

type CompilerError

type CompilerError struct {
	// Types that are valid to be assigned to Error:
	//	*CompilerError_LineColError
	Error isCompilerError_Error `protobuf_oneof:"error"`
}

func (*CompilerError) Descriptor

func (*CompilerError) Descriptor() ([]byte, []int)

func (*CompilerError) Equal

func (this *CompilerError) Equal(that interface{}) bool

func (*CompilerError) GetError

func (m *CompilerError) GetError() isCompilerError_Error

func (*CompilerError) GetLineColError

func (m *CompilerError) GetLineColError() *LineColError

func (*CompilerError) GoString

func (this *CompilerError) GoString() string

func (*CompilerError) Marshal

func (m *CompilerError) Marshal() (dAtA []byte, err error)

func (*CompilerError) MarshalTo

func (m *CompilerError) MarshalTo(dAtA []byte) (int, error)

func (*CompilerError) MarshalToSizedBuffer

func (m *CompilerError) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CompilerError) ProtoMessage

func (*CompilerError) ProtoMessage()

func (*CompilerError) Reset

func (m *CompilerError) Reset()

func (*CompilerError) Size

func (m *CompilerError) Size() (n int)

func (*CompilerError) String

func (this *CompilerError) String() string

func (*CompilerError) Unmarshal

func (m *CompilerError) Unmarshal(dAtA []byte) error

func (*CompilerError) XXX_DiscardUnknown

func (m *CompilerError) XXX_DiscardUnknown()

func (*CompilerError) XXX_Marshal

func (m *CompilerError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CompilerError) XXX_Merge

func (m *CompilerError) XXX_Merge(src proto.Message)

func (*CompilerError) XXX_OneofWrappers

func (*CompilerError) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*CompilerError) XXX_Size

func (m *CompilerError) XXX_Size() int

func (*CompilerError) XXX_Unmarshal

func (m *CompilerError) XXX_Unmarshal(b []byte) error

type CompilerErrorGroup

type CompilerErrorGroup struct {
	Errors []*CompilerError `protobuf:"bytes,1,rep,name=errors,proto3" json:"errors,omitempty"`
}

func (*CompilerErrorGroup) Descriptor

func (*CompilerErrorGroup) Descriptor() ([]byte, []int)

func (*CompilerErrorGroup) Equal

func (this *CompilerErrorGroup) Equal(that interface{}) bool

func (*CompilerErrorGroup) GetErrors

func (m *CompilerErrorGroup) GetErrors() []*CompilerError

func (*CompilerErrorGroup) GoString

func (this *CompilerErrorGroup) GoString() string

func (*CompilerErrorGroup) Marshal

func (m *CompilerErrorGroup) Marshal() (dAtA []byte, err error)

func (*CompilerErrorGroup) MarshalTo

func (m *CompilerErrorGroup) MarshalTo(dAtA []byte) (int, error)

func (*CompilerErrorGroup) MarshalToSizedBuffer

func (m *CompilerErrorGroup) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CompilerErrorGroup) ProtoMessage

func (*CompilerErrorGroup) ProtoMessage()

func (*CompilerErrorGroup) Reset

func (m *CompilerErrorGroup) Reset()

func (*CompilerErrorGroup) Size

func (m *CompilerErrorGroup) Size() (n int)

func (*CompilerErrorGroup) String

func (this *CompilerErrorGroup) String() string

func (*CompilerErrorGroup) Unmarshal

func (m *CompilerErrorGroup) Unmarshal(dAtA []byte) error

func (*CompilerErrorGroup) XXX_DiscardUnknown

func (m *CompilerErrorGroup) XXX_DiscardUnknown()

func (*CompilerErrorGroup) XXX_Marshal

func (m *CompilerErrorGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CompilerErrorGroup) XXX_Merge

func (m *CompilerErrorGroup) XXX_Merge(src proto.Message)

func (*CompilerErrorGroup) XXX_Size

func (m *CompilerErrorGroup) XXX_Size() int

func (*CompilerErrorGroup) XXX_Unmarshal

func (m *CompilerErrorGroup) XXX_Unmarshal(b []byte) error

type CompilerError_LineColError

type CompilerError_LineColError struct {
	LineColError *LineColError `protobuf:"bytes,1,opt,name=line_col_error,json=lineColError,proto3,oneof" json:"line_col_error,omitempty"`
}

func (*CompilerError_LineColError) Equal

func (this *CompilerError_LineColError) Equal(that interface{}) bool

func (*CompilerError_LineColError) GoString

func (this *CompilerError_LineColError) GoString() string

func (*CompilerError_LineColError) MarshalTo

func (m *CompilerError_LineColError) MarshalTo(dAtA []byte) (int, error)

func (*CompilerError_LineColError) MarshalToSizedBuffer

func (m *CompilerError_LineColError) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CompilerError_LineColError) Size

func (m *CompilerError_LineColError) Size() (n int)

func (*CompilerError_LineColError) String

func (this *CompilerError_LineColError) String() string

type CompilerResult

type CompilerResult struct {
	Status      *statuspb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	LogicalPlan *planpb.Plan     `protobuf:"bytes,2,opt,name=logical_plan,json=logicalPlan,proto3" json:"logical_plan,omitempty"`
}

func (*CompilerResult) Descriptor

func (*CompilerResult) Descriptor() ([]byte, []int)

func (*CompilerResult) Equal

func (this *CompilerResult) Equal(that interface{}) bool

func (*CompilerResult) GetLogicalPlan

func (m *CompilerResult) GetLogicalPlan() *planpb.Plan

func (*CompilerResult) GetStatus

func (m *CompilerResult) GetStatus() *statuspb.Status

func (*CompilerResult) GoString

func (this *CompilerResult) GoString() string

func (*CompilerResult) Marshal

func (m *CompilerResult) Marshal() (dAtA []byte, err error)

func (*CompilerResult) MarshalTo

func (m *CompilerResult) MarshalTo(dAtA []byte) (int, error)

func (*CompilerResult) MarshalToSizedBuffer

func (m *CompilerResult) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*CompilerResult) ProtoMessage

func (*CompilerResult) ProtoMessage()

func (*CompilerResult) Reset

func (m *CompilerResult) Reset()

func (*CompilerResult) Size

func (m *CompilerResult) Size() (n int)

func (*CompilerResult) String

func (this *CompilerResult) String() string

func (*CompilerResult) Unmarshal

func (m *CompilerResult) Unmarshal(dAtA []byte) error

func (*CompilerResult) XXX_DiscardUnknown

func (m *CompilerResult) XXX_DiscardUnknown()

func (*CompilerResult) XXX_Marshal

func (m *CompilerResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CompilerResult) XXX_Merge

func (m *CompilerResult) XXX_Merge(src proto.Message)

func (*CompilerResult) XXX_Size

func (m *CompilerResult) XXX_Size() int

func (*CompilerResult) XXX_Unmarshal

func (m *CompilerResult) XXX_Unmarshal(b []byte) error

type LineColError

type LineColError struct {
	Line    uint64 `protobuf:"varint,1,opt,name=line,proto3" json:"line,omitempty"`
	Column  uint64 `protobuf:"varint,2,opt,name=column,proto3" json:"column,omitempty"`
	Message string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
}

func (*LineColError) Descriptor

func (*LineColError) Descriptor() ([]byte, []int)

func (*LineColError) Equal

func (this *LineColError) Equal(that interface{}) bool

func (*LineColError) GetColumn

func (m *LineColError) GetColumn() uint64

func (*LineColError) GetLine

func (m *LineColError) GetLine() uint64

func (*LineColError) GetMessage

func (m *LineColError) GetMessage() string

func (*LineColError) GoString

func (this *LineColError) GoString() string

func (*LineColError) Marshal

func (m *LineColError) Marshal() (dAtA []byte, err error)

func (*LineColError) MarshalTo

func (m *LineColError) MarshalTo(dAtA []byte) (int, error)

func (*LineColError) MarshalToSizedBuffer

func (m *LineColError) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*LineColError) ProtoMessage

func (*LineColError) ProtoMessage()

func (*LineColError) Reset

func (m *LineColError) Reset()

func (*LineColError) Size

func (m *LineColError) Size() (n int)

func (*LineColError) String

func (this *LineColError) String() string

func (*LineColError) Unmarshal

func (m *LineColError) Unmarshal(dAtA []byte) error

func (*LineColError) XXX_DiscardUnknown

func (m *LineColError) XXX_DiscardUnknown()

func (*LineColError) XXX_Marshal

func (m *LineColError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LineColError) XXX_Merge

func (m *LineColError) XXX_Merge(src proto.Message)

func (*LineColError) XXX_Size

func (m *LineColError) XXX_Size() int

func (*LineColError) XXX_Unmarshal

func (m *LineColError) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL