vtgatev18

package
v1.33.0-20231211191728... Latest Latest
Warning

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

Go to latest
Published: unknown License: Apache-2.0 Imports: 8 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	TransactionMode_name = map[int32]string{
		0: "UNSPECIFIED",
		1: "SINGLE",
		2: "MULTI",
		3: "TWOPC",
	}
	TransactionMode_value = map[string]int32{
		"UNSPECIFIED": 0,
		"SINGLE":      1,
		"MULTI":       2,
		"TWOPC":       3,
	}
)

Enum value maps for TransactionMode.

View Source
var (
	CommitOrder_name = map[int32]string{
		0: "NORMAL",
		1: "PRE",
		2: "POST",
		3: "AUTOCOMMIT",
	}
	CommitOrder_value = map[string]int32{
		"NORMAL":     0,
		"PRE":        1,
		"POST":       2,
		"AUTOCOMMIT": 3,
	}
)

Enum value maps for CommitOrder.

View Source
var File_vitess_vtgate_v18_vtgate_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type CloseSessionRequest

type CloseSessionRequest struct {

	// caller_id identifies the caller. This is the effective caller ID,
	// set by the application to further identify the caller.
	CallerId *v181.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId,proto3" json:"caller_id,omitempty"`
	// session carries the session state.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

CloseSessionRequest is the payload to CloseSession.

func (*CloseSessionRequest) Descriptor deprecated

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

Deprecated: Use CloseSessionRequest.ProtoReflect.Descriptor instead.

func (*CloseSessionRequest) GetCallerId

func (x *CloseSessionRequest) GetCallerId() *v181.CallerID

func (*CloseSessionRequest) GetSession

func (x *CloseSessionRequest) GetSession() *Session

func (*CloseSessionRequest) ProtoMessage

func (*CloseSessionRequest) ProtoMessage()

func (*CloseSessionRequest) ProtoReflect

func (x *CloseSessionRequest) ProtoReflect() protoreflect.Message

func (*CloseSessionRequest) Reset

func (x *CloseSessionRequest) Reset()

func (*CloseSessionRequest) String

func (x *CloseSessionRequest) String() string

type CloseSessionResponse

type CloseSessionResponse struct {

	// error contains an application level error if necessary. Note the
	// session may have changed, even when an error is returned (for
	// instance if a database integrity error happened).
	Error *v181.RPCError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

CloseSessionResponse is the returned value from CloseSession.

func (*CloseSessionResponse) Descriptor deprecated

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

Deprecated: Use CloseSessionResponse.ProtoReflect.Descriptor instead.

func (*CloseSessionResponse) GetError

func (x *CloseSessionResponse) GetError() *v181.RPCError

func (*CloseSessionResponse) ProtoMessage

func (*CloseSessionResponse) ProtoMessage()

func (*CloseSessionResponse) ProtoReflect

func (x *CloseSessionResponse) ProtoReflect() protoreflect.Message

func (*CloseSessionResponse) Reset

func (x *CloseSessionResponse) Reset()

func (*CloseSessionResponse) String

func (x *CloseSessionResponse) String() string

type CommitOrder

type CommitOrder int32

CommitOrder is used to designate which of the ShardSessions get used for transactions.

const (
	// NORMAL is the default commit order.
	CommitOrder_NORMAL CommitOrder = 0
	// PRE is used to designate pre_sessions.
	CommitOrder_PRE CommitOrder = 1
	// POST is used to designate post_sessions.
	CommitOrder_POST CommitOrder = 2
	// AUTOCOMMIT is used to run the statement as autocommitted transaction.
	CommitOrder_AUTOCOMMIT CommitOrder = 3
)

func (CommitOrder) Descriptor

func (CommitOrder) Enum

func (x CommitOrder) Enum() *CommitOrder

func (CommitOrder) EnumDescriptor deprecated

func (CommitOrder) EnumDescriptor() ([]byte, []int)

Deprecated: Use CommitOrder.Descriptor instead.

func (CommitOrder) Number

func (x CommitOrder) Number() protoreflect.EnumNumber

func (CommitOrder) String

func (x CommitOrder) String() string

func (CommitOrder) Type

type ExecuteBatchRequest

type ExecuteBatchRequest struct {

	// caller_id identifies the caller. This is the effective caller ID,
	// set by the application to further identify the caller.
	CallerId *v181.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId,proto3" json:"caller_id,omitempty"`
	// session carries the session state.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// queries is a list of query and bind variables to execute.
	Queries []*v18.BoundQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
	// contains filtered or unexported fields
}

ExecuteBatchRequest is the payload to ExecuteBatch.

func (*ExecuteBatchRequest) Descriptor deprecated

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

Deprecated: Use ExecuteBatchRequest.ProtoReflect.Descriptor instead.

func (*ExecuteBatchRequest) GetCallerId

func (x *ExecuteBatchRequest) GetCallerId() *v181.CallerID

func (*ExecuteBatchRequest) GetQueries

func (x *ExecuteBatchRequest) GetQueries() []*v18.BoundQuery

func (*ExecuteBatchRequest) GetSession

func (x *ExecuteBatchRequest) GetSession() *Session

func (*ExecuteBatchRequest) ProtoMessage

func (*ExecuteBatchRequest) ProtoMessage()

func (*ExecuteBatchRequest) ProtoReflect

func (x *ExecuteBatchRequest) ProtoReflect() protoreflect.Message

func (*ExecuteBatchRequest) Reset

func (x *ExecuteBatchRequest) Reset()

func (*ExecuteBatchRequest) String

func (x *ExecuteBatchRequest) String() string

type ExecuteBatchResponse

type ExecuteBatchResponse struct {

	// error contains an application level error if necessary. Note the
	// session may have changed, even when an error is returned (for
	// instance if a database integrity error happened).
	Error *v181.RPCError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	// session is the updated session information.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// results contains the query results, only set if application level error is unset.
	Results []*v18.ResultWithError `protobuf:"bytes,3,rep,name=results,proto3" json:"results,omitempty"`
	// contains filtered or unexported fields
}

ExecuteBatchResponse is the returned value from ExecuteBatch.

func (*ExecuteBatchResponse) Descriptor deprecated

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

Deprecated: Use ExecuteBatchResponse.ProtoReflect.Descriptor instead.

func (*ExecuteBatchResponse) GetError

func (x *ExecuteBatchResponse) GetError() *v181.RPCError

func (*ExecuteBatchResponse) GetResults

func (x *ExecuteBatchResponse) GetResults() []*v18.ResultWithError

func (*ExecuteBatchResponse) GetSession

func (x *ExecuteBatchResponse) GetSession() *Session

func (*ExecuteBatchResponse) ProtoMessage

func (*ExecuteBatchResponse) ProtoMessage()

func (*ExecuteBatchResponse) ProtoReflect

func (x *ExecuteBatchResponse) ProtoReflect() protoreflect.Message

func (*ExecuteBatchResponse) Reset

func (x *ExecuteBatchResponse) Reset()

func (*ExecuteBatchResponse) String

func (x *ExecuteBatchResponse) String() string

type ExecuteRequest

type ExecuteRequest struct {

	// caller_id identifies the caller. This is the effective caller ID,
	// set by the application to further identify the caller.
	CallerId *v181.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId,proto3" json:"caller_id,omitempty"`
	// session carries the session state.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// query is the query and bind variables to execute.
	Query *v18.BoundQuery `protobuf:"bytes,3,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

ExecuteRequest is the payload to Execute.

func (*ExecuteRequest) Descriptor deprecated

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

Deprecated: Use ExecuteRequest.ProtoReflect.Descriptor instead.

func (*ExecuteRequest) GetCallerId

func (x *ExecuteRequest) GetCallerId() *v181.CallerID

func (*ExecuteRequest) GetQuery

func (x *ExecuteRequest) GetQuery() *v18.BoundQuery

func (*ExecuteRequest) GetSession

func (x *ExecuteRequest) GetSession() *Session

func (*ExecuteRequest) ProtoMessage

func (*ExecuteRequest) ProtoMessage()

func (*ExecuteRequest) ProtoReflect

func (x *ExecuteRequest) ProtoReflect() protoreflect.Message

func (*ExecuteRequest) Reset

func (x *ExecuteRequest) Reset()

func (*ExecuteRequest) String

func (x *ExecuteRequest) String() string

type ExecuteResponse

type ExecuteResponse struct {

	// error contains an application level error if necessary. Note the
	// session may have changed, even when an error is returned (for
	// instance if a database integrity error happened).
	Error *v181.RPCError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	// session is the updated session information.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// result contains the query result, only set if error is unset.
	Result *v18.QueryResult `protobuf:"bytes,3,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

ExecuteResponse is the returned value from Execute.

func (*ExecuteResponse) Descriptor deprecated

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

Deprecated: Use ExecuteResponse.ProtoReflect.Descriptor instead.

func (*ExecuteResponse) GetError

func (x *ExecuteResponse) GetError() *v181.RPCError

func (*ExecuteResponse) GetResult

func (x *ExecuteResponse) GetResult() *v18.QueryResult

func (*ExecuteResponse) GetSession

func (x *ExecuteResponse) GetSession() *Session

func (*ExecuteResponse) ProtoMessage

func (*ExecuteResponse) ProtoMessage()

func (*ExecuteResponse) ProtoReflect

func (x *ExecuteResponse) ProtoReflect() protoreflect.Message

func (*ExecuteResponse) Reset

func (x *ExecuteResponse) Reset()

func (*ExecuteResponse) String

func (x *ExecuteResponse) String() string

type PrepareData

type PrepareData struct {
	PrepareStatement string `protobuf:"bytes,1,opt,name=prepare_statement,json=prepareStatement,proto3" json:"prepare_statement,omitempty"`
	ParamsCount      int32  `protobuf:"varint,2,opt,name=params_count,json=paramsCount,proto3" json:"params_count,omitempty"`
	// contains filtered or unexported fields
}

PrepareData keeps the prepared statement and other information related for execution of it.

func (*PrepareData) Descriptor deprecated

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

Deprecated: Use PrepareData.ProtoReflect.Descriptor instead.

func (*PrepareData) GetParamsCount

func (x *PrepareData) GetParamsCount() int32

func (*PrepareData) GetPrepareStatement

func (x *PrepareData) GetPrepareStatement() string

func (*PrepareData) ProtoMessage

func (*PrepareData) ProtoMessage()

func (*PrepareData) ProtoReflect

func (x *PrepareData) ProtoReflect() protoreflect.Message

func (*PrepareData) Reset

func (x *PrepareData) Reset()

func (*PrepareData) String

func (x *PrepareData) String() string

type PrepareRequest

type PrepareRequest struct {

	// caller_id identifies the caller. This is the effective caller ID,
	// set by the application to further identify the caller.
	CallerId *v181.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId,proto3" json:"caller_id,omitempty"`
	// session carries the session state.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// query is the query and bind variables to execute.
	Query *v18.BoundQuery `protobuf:"bytes,3,opt,name=query,proto3" json:"query,omitempty"`
	// contains filtered or unexported fields
}

PrepareRequest is the payload to Prepare.

func (*PrepareRequest) Descriptor deprecated

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

Deprecated: Use PrepareRequest.ProtoReflect.Descriptor instead.

func (*PrepareRequest) GetCallerId

func (x *PrepareRequest) GetCallerId() *v181.CallerID

func (*PrepareRequest) GetQuery

func (x *PrepareRequest) GetQuery() *v18.BoundQuery

func (*PrepareRequest) GetSession

func (x *PrepareRequest) GetSession() *Session

func (*PrepareRequest) ProtoMessage

func (*PrepareRequest) ProtoMessage()

func (*PrepareRequest) ProtoReflect

func (x *PrepareRequest) ProtoReflect() protoreflect.Message

func (*PrepareRequest) Reset

func (x *PrepareRequest) Reset()

func (*PrepareRequest) String

func (x *PrepareRequest) String() string

type PrepareResponse

type PrepareResponse struct {

	// error contains an application level error if necessary. Note the
	// session may have changed, even when an error is returned (for
	// instance if a database integrity error happened).
	Error *v181.RPCError `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
	// session is the updated session information.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// fields contains the fields, only set if error is unset.
	Fields []*v18.Field `protobuf:"bytes,3,rep,name=fields,proto3" json:"fields,omitempty"`
	// contains filtered or unexported fields
}

PrepareResponse is the returned value from Prepare.

func (*PrepareResponse) Descriptor deprecated

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

Deprecated: Use PrepareResponse.ProtoReflect.Descriptor instead.

func (*PrepareResponse) GetError

func (x *PrepareResponse) GetError() *v181.RPCError

func (*PrepareResponse) GetFields

func (x *PrepareResponse) GetFields() []*v18.Field

func (*PrepareResponse) GetSession

func (x *PrepareResponse) GetSession() *Session

func (*PrepareResponse) ProtoMessage

func (*PrepareResponse) ProtoMessage()

func (*PrepareResponse) ProtoReflect

func (x *PrepareResponse) ProtoReflect() protoreflect.Message

func (*PrepareResponse) Reset

func (x *PrepareResponse) Reset()

func (*PrepareResponse) String

func (x *PrepareResponse) String() string

type ReadAfterWrite

type ReadAfterWrite struct {
	ReadAfterWriteGtid    string  `protobuf:"bytes,1,opt,name=read_after_write_gtid,json=readAfterWriteGtid,proto3" json:"read_after_write_gtid,omitempty"`
	ReadAfterWriteTimeout float64 `` /* 130-byte string literal not displayed */
	SessionTrackGtids     bool    `protobuf:"varint,3,opt,name=session_track_gtids,json=sessionTrackGtids,proto3" json:"session_track_gtids,omitempty"`
	// contains filtered or unexported fields
}

ReadAfterWrite contains information regarding gtid set and timeout Also if the gtid information needs to be passed to client.

func (*ReadAfterWrite) Descriptor deprecated

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

Deprecated: Use ReadAfterWrite.ProtoReflect.Descriptor instead.

func (*ReadAfterWrite) GetReadAfterWriteGtid

func (x *ReadAfterWrite) GetReadAfterWriteGtid() string

func (*ReadAfterWrite) GetReadAfterWriteTimeout

func (x *ReadAfterWrite) GetReadAfterWriteTimeout() float64

func (*ReadAfterWrite) GetSessionTrackGtids

func (x *ReadAfterWrite) GetSessionTrackGtids() bool

func (*ReadAfterWrite) ProtoMessage

func (*ReadAfterWrite) ProtoMessage()

func (*ReadAfterWrite) ProtoReflect

func (x *ReadAfterWrite) ProtoReflect() protoreflect.Message

func (*ReadAfterWrite) Reset

func (x *ReadAfterWrite) Reset()

func (*ReadAfterWrite) String

func (x *ReadAfterWrite) String() string

type ResolveTransactionRequest

type ResolveTransactionRequest struct {

	// caller_id identifies the caller. This is the effective caller ID,
	// set by the application to further identify the caller.
	CallerId *v181.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId,proto3" json:"caller_id,omitempty"`
	// dtid is the dtid of the transaction to be resolved.
	Dtid string `protobuf:"bytes,2,opt,name=dtid,proto3" json:"dtid,omitempty"`
	// contains filtered or unexported fields
}

ResolveTransactionRequest is the payload to ResolveTransaction.

func (*ResolveTransactionRequest) Descriptor deprecated

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

Deprecated: Use ResolveTransactionRequest.ProtoReflect.Descriptor instead.

func (*ResolveTransactionRequest) GetCallerId

func (x *ResolveTransactionRequest) GetCallerId() *v181.CallerID

func (*ResolveTransactionRequest) GetDtid

func (x *ResolveTransactionRequest) GetDtid() string

func (*ResolveTransactionRequest) ProtoMessage

func (*ResolveTransactionRequest) ProtoMessage()

func (*ResolveTransactionRequest) ProtoReflect

func (*ResolveTransactionRequest) Reset

func (x *ResolveTransactionRequest) Reset()

func (*ResolveTransactionRequest) String

func (x *ResolveTransactionRequest) String() string

type ResolveTransactionResponse

type ResolveTransactionResponse struct {
	// contains filtered or unexported fields
}

ResolveTransactionResponse is the returned value from Rollback.

func (*ResolveTransactionResponse) Descriptor deprecated

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

Deprecated: Use ResolveTransactionResponse.ProtoReflect.Descriptor instead.

func (*ResolveTransactionResponse) ProtoMessage

func (*ResolveTransactionResponse) ProtoMessage()

func (*ResolveTransactionResponse) ProtoReflect

func (*ResolveTransactionResponse) Reset

func (x *ResolveTransactionResponse) Reset()

func (*ResolveTransactionResponse) String

func (x *ResolveTransactionResponse) String() string

type Session

type Session struct {

	// in_transaction is set to true if the session is in a transaction.
	InTransaction bool `protobuf:"varint,1,opt,name=in_transaction,json=inTransaction,proto3" json:"in_transaction,omitempty"`
	// shard_sessions keep track of per-shard transaction info.
	ShardSessions []*Session_ShardSession `protobuf:"bytes,2,rep,name=shard_sessions,json=shardSessions,proto3" json:"shard_sessions,omitempty"`
	// autocommit specifies if the session is in autocommit mode.
	// This is used only for V3.
	Autocommit bool `protobuf:"varint,4,opt,name=autocommit,proto3" json:"autocommit,omitempty"`
	// target_string is the target expressed as a string. Valid
	// names are: keyspace:shard@target, keyspace@target or @target.
	// This is used only for V3.
	TargetString string `protobuf:"bytes,5,opt,name=target_string,json=targetString,proto3" json:"target_string,omitempty"`
	// options is used only for V3.
	Options *v18.ExecuteOptions `protobuf:"bytes,6,opt,name=options,proto3" json:"options,omitempty"`
	// transaction_mode specifies the current transaction mode.
	TransactionMode TransactionMode `` /* 146-byte string literal not displayed */
	// warnings contains non-fatal warnings from the previous query
	Warnings []*v18.QueryWarning `protobuf:"bytes,8,rep,name=warnings,proto3" json:"warnings,omitempty"`
	// pre_sessions contains sessions that have to be committed first.
	PreSessions []*Session_ShardSession `protobuf:"bytes,9,rep,name=pre_sessions,json=preSessions,proto3" json:"pre_sessions,omitempty"`
	// post_sessions contains sessions that have to be committed last.
	PostSessions []*Session_ShardSession `protobuf:"bytes,10,rep,name=post_sessions,json=postSessions,proto3" json:"post_sessions,omitempty"`
	// last_insert_id keeps track of the last seen insert_id for this session
	LastInsertId uint64 `protobuf:"varint,11,opt,name=last_insert_id,json=lastInsertId,proto3" json:"last_insert_id,omitempty"`
	// found_rows keeps track of how many rows the last query returned
	FoundRows uint64 `protobuf:"varint,12,opt,name=found_rows,json=foundRows,proto3" json:"found_rows,omitempty"`
	// user_defined_variables contains all the @variables defined for this session
	UserDefinedVariables map[string]*v18.BindVariable `` /* 212-byte string literal not displayed */
	// system_variables keeps track of all session variables set for this connection
	// TODO: systay should we keep this so we can apply it ordered?
	SystemVariables map[string]string `` /* 195-byte string literal not displayed */
	// row_count keeps track of the last seen rows affected for this session
	RowCount int64 `protobuf:"varint,15,opt,name=row_count,json=rowCount,proto3" json:"row_count,omitempty"`
	// Stores savepoint and release savepoint calls inside a transaction
	// and is reset once transaction is committed or rolled back.
	Savepoints []string `protobuf:"bytes,16,rep,name=savepoints,proto3" json:"savepoints,omitempty"`
	// in_reserved_conn is set to true if the session should be using reserved connections.
	InReservedConn bool `protobuf:"varint,17,opt,name=in_reserved_conn,json=inReservedConn,proto3" json:"in_reserved_conn,omitempty"`
	// lock_session keep tracks of shard on which the lock query is sent.
	LockSession *Session_ShardSession `protobuf:"bytes,18,opt,name=lock_session,json=lockSession,proto3" json:"lock_session,omitempty"`
	// last_lock_heartbeat keep tracks of when last lock heartbeat was sent.
	LastLockHeartbeat int64 `protobuf:"varint,19,opt,name=last_lock_heartbeat,json=lastLockHeartbeat,proto3" json:"last_lock_heartbeat,omitempty"`
	// read_after_write tracks the ReadAfterWrite settings for this session.
	ReadAfterWrite *ReadAfterWrite `protobuf:"bytes,20,opt,name=read_after_write,json=readAfterWrite,proto3" json:"read_after_write,omitempty"`
	// DDL strategy
	DDLStrategy string `protobuf:"bytes,21,opt,name=DDLStrategy,proto3" json:"DDLStrategy,omitempty"`
	// Session UUID
	SessionUUID string `protobuf:"bytes,22,opt,name=SessionUUID,proto3" json:"SessionUUID,omitempty"`
	// enable_system_settings defines if we can use reserved connections.
	EnableSystemSettings bool             `protobuf:"varint,23,opt,name=enable_system_settings,json=enableSystemSettings,proto3" json:"enable_system_settings,omitempty"`
	AdvisoryLock         map[string]int64 `` /* 187-byte string literal not displayed */
	// query_timeout is the maximum amount of time a query is permitted to run
	QueryTimeout     int64                   `protobuf:"varint,25,opt,name=query_timeout,json=queryTimeout,proto3" json:"query_timeout,omitempty"`
	PrepareStatement map[string]*PrepareData `` /* 198-byte string literal not displayed */
	// MigrationContext
	MigrationContext string `protobuf:"bytes,27,opt,name=migration_context,json=migrationContext,proto3" json:"migration_context,omitempty"`
	// contains filtered or unexported fields
}

Session objects are exchanged like cookies through various calls to VTGate. The behavior differs between V2 & V3 APIs. V3 APIs are Execute, ExecuteBatch and StreamExecute. All other APIs are V2. For the V3 APIs, the session must be sent with every call to Execute or ExecuteBatch. For the V2 APIs, Begin does not accept a session. It instead returns a brand new one with in_transaction set to true. After a call to Commit or Rollback, the session can be discarded. If you're not in a transaction, Session is an optional parameter for the V2 APIs.

func (*Session) Descriptor deprecated

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

Deprecated: Use Session.ProtoReflect.Descriptor instead.

func (*Session) GetAdvisoryLock

func (x *Session) GetAdvisoryLock() map[string]int64

func (*Session) GetAutocommit

func (x *Session) GetAutocommit() bool

func (*Session) GetDDLStrategy

func (x *Session) GetDDLStrategy() string

func (*Session) GetEnableSystemSettings

func (x *Session) GetEnableSystemSettings() bool

func (*Session) GetFoundRows

func (x *Session) GetFoundRows() uint64

func (*Session) GetInReservedConn

func (x *Session) GetInReservedConn() bool

func (*Session) GetInTransaction

func (x *Session) GetInTransaction() bool

func (*Session) GetLastInsertId

func (x *Session) GetLastInsertId() uint64

func (*Session) GetLastLockHeartbeat

func (x *Session) GetLastLockHeartbeat() int64

func (*Session) GetLockSession

func (x *Session) GetLockSession() *Session_ShardSession

func (*Session) GetMigrationContext

func (x *Session) GetMigrationContext() string

func (*Session) GetOptions

func (x *Session) GetOptions() *v18.ExecuteOptions

func (*Session) GetPostSessions

func (x *Session) GetPostSessions() []*Session_ShardSession

func (*Session) GetPreSessions

func (x *Session) GetPreSessions() []*Session_ShardSession

func (*Session) GetPrepareStatement

func (x *Session) GetPrepareStatement() map[string]*PrepareData

func (*Session) GetQueryTimeout

func (x *Session) GetQueryTimeout() int64

func (*Session) GetReadAfterWrite

func (x *Session) GetReadAfterWrite() *ReadAfterWrite

func (*Session) GetRowCount

func (x *Session) GetRowCount() int64

func (*Session) GetSavepoints

func (x *Session) GetSavepoints() []string

func (*Session) GetSessionUUID

func (x *Session) GetSessionUUID() string

func (*Session) GetShardSessions

func (x *Session) GetShardSessions() []*Session_ShardSession

func (*Session) GetSystemVariables

func (x *Session) GetSystemVariables() map[string]string

func (*Session) GetTargetString

func (x *Session) GetTargetString() string

func (*Session) GetTransactionMode

func (x *Session) GetTransactionMode() TransactionMode

func (*Session) GetUserDefinedVariables

func (x *Session) GetUserDefinedVariables() map[string]*v18.BindVariable

func (*Session) GetWarnings

func (x *Session) GetWarnings() []*v18.QueryWarning

func (*Session) ProtoMessage

func (*Session) ProtoMessage()

func (*Session) ProtoReflect

func (x *Session) ProtoReflect() protoreflect.Message

func (*Session) Reset

func (x *Session) Reset()

func (*Session) String

func (x *Session) String() string

type Session_ShardSession

type Session_ShardSession struct {
	Target        *v18.Target       `protobuf:"bytes,1,opt,name=target,proto3" json:"target,omitempty"`
	TransactionId int64             `protobuf:"varint,2,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"`
	TabletAlias   *v182.TabletAlias `protobuf:"bytes,3,opt,name=tablet_alias,json=tabletAlias,proto3" json:"tablet_alias,omitempty"`
	// reserved connection if a dedicated connection is needed
	ReservedId int64 `protobuf:"varint,4,opt,name=reserved_id,json=reservedId,proto3" json:"reserved_id,omitempty"`
	VindexOnly bool  `protobuf:"varint,5,opt,name=vindex_only,json=vindexOnly,proto3" json:"vindex_only,omitempty"`
	// contains filtered or unexported fields
}

func (*Session_ShardSession) Descriptor deprecated

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

Deprecated: Use Session_ShardSession.ProtoReflect.Descriptor instead.

func (*Session_ShardSession) GetReservedId

func (x *Session_ShardSession) GetReservedId() int64

func (*Session_ShardSession) GetTabletAlias

func (x *Session_ShardSession) GetTabletAlias() *v182.TabletAlias

func (*Session_ShardSession) GetTarget

func (x *Session_ShardSession) GetTarget() *v18.Target

func (*Session_ShardSession) GetTransactionId

func (x *Session_ShardSession) GetTransactionId() int64

func (*Session_ShardSession) GetVindexOnly

func (x *Session_ShardSession) GetVindexOnly() bool

func (*Session_ShardSession) ProtoMessage

func (*Session_ShardSession) ProtoMessage()

func (*Session_ShardSession) ProtoReflect

func (x *Session_ShardSession) ProtoReflect() protoreflect.Message

func (*Session_ShardSession) Reset

func (x *Session_ShardSession) Reset()

func (*Session_ShardSession) String

func (x *Session_ShardSession) String() string

type StreamExecuteRequest

type StreamExecuteRequest struct {

	// caller_id identifies the caller. This is the effective caller ID,
	// set by the application to further identify the caller.
	CallerId *v181.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId,proto3" json:"caller_id,omitempty"`
	// query is the query and bind variables to execute.
	Query *v18.BoundQuery `protobuf:"bytes,2,opt,name=query,proto3" json:"query,omitempty"`
	// session carries the session state.
	Session *Session `protobuf:"bytes,6,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

StreamExecuteRequest is the payload to StreamExecute.

func (*StreamExecuteRequest) Descriptor deprecated

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

Deprecated: Use StreamExecuteRequest.ProtoReflect.Descriptor instead.

func (*StreamExecuteRequest) GetCallerId

func (x *StreamExecuteRequest) GetCallerId() *v181.CallerID

func (*StreamExecuteRequest) GetQuery

func (x *StreamExecuteRequest) GetQuery() *v18.BoundQuery

func (*StreamExecuteRequest) GetSession

func (x *StreamExecuteRequest) GetSession() *Session

func (*StreamExecuteRequest) ProtoMessage

func (*StreamExecuteRequest) ProtoMessage()

func (*StreamExecuteRequest) ProtoReflect

func (x *StreamExecuteRequest) ProtoReflect() protoreflect.Message

func (*StreamExecuteRequest) Reset

func (x *StreamExecuteRequest) Reset()

func (*StreamExecuteRequest) String

func (x *StreamExecuteRequest) String() string

type StreamExecuteResponse

type StreamExecuteResponse struct {

	// result contains the result data.
	// The first value contains only Fields information.
	// The next values contain the actual rows, a few values per result.
	Result *v18.QueryResult `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
	// session is the updated session information.
	Session *Session `protobuf:"bytes,2,opt,name=session,proto3" json:"session,omitempty"`
	// contains filtered or unexported fields
}

StreamExecuteResponse is the returned value from StreamExecute. The session is currently not returned because StreamExecute is not expected to modify it.

func (*StreamExecuteResponse) Descriptor deprecated

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

Deprecated: Use StreamExecuteResponse.ProtoReflect.Descriptor instead.

func (*StreamExecuteResponse) GetResult

func (x *StreamExecuteResponse) GetResult() *v18.QueryResult

func (*StreamExecuteResponse) GetSession

func (x *StreamExecuteResponse) GetSession() *Session

func (*StreamExecuteResponse) ProtoMessage

func (*StreamExecuteResponse) ProtoMessage()

func (*StreamExecuteResponse) ProtoReflect

func (x *StreamExecuteResponse) ProtoReflect() protoreflect.Message

func (*StreamExecuteResponse) Reset

func (x *StreamExecuteResponse) Reset()

func (*StreamExecuteResponse) String

func (x *StreamExecuteResponse) String() string

type TransactionMode

type TransactionMode int32

TransactionMode controls the execution of distributed transaction across multiple shards.

const (
	// UNSPECIFIED uses the transaction mode set by the VTGate flag 'transaction_mode'.
	TransactionMode_UNSPECIFIED TransactionMode = 0
	// SINGLE disallows distributed transactions.
	TransactionMode_SINGLE TransactionMode = 1
	// MULTI allows distributed transactions with best effort commit.
	TransactionMode_MULTI TransactionMode = 2
	// TWOPC is for distributed transactions with atomic commits.
	TransactionMode_TWOPC TransactionMode = 3
)

func (TransactionMode) Descriptor

func (TransactionMode) Enum

func (x TransactionMode) Enum() *TransactionMode

func (TransactionMode) EnumDescriptor deprecated

func (TransactionMode) EnumDescriptor() ([]byte, []int)

Deprecated: Use TransactionMode.Descriptor instead.

func (TransactionMode) Number

func (TransactionMode) String

func (x TransactionMode) String() string

func (TransactionMode) Type

type VStreamFlags

type VStreamFlags struct {

	// align streams
	MinimizeSkew bool `protobuf:"varint,1,opt,name=minimize_skew,json=minimizeSkew,proto3" json:"minimize_skew,omitempty"`
	// how often heartbeats must be sent when idle (seconds)
	HeartbeatInterval uint32 `protobuf:"varint,2,opt,name=heartbeat_interval,json=heartbeatInterval,proto3" json:"heartbeat_interval,omitempty"`
	// stop streams on a reshard (journal event)
	StopOnReshard bool `protobuf:"varint,3,opt,name=stop_on_reshard,json=stopOnReshard,proto3" json:"stop_on_reshard,omitempty"`
	// if specified, these cells (comma-separated) are used to pick source tablets from.
	// defaults to the cell of the vtgate serving the VStream API.
	Cells          string `protobuf:"bytes,4,opt,name=cells,proto3" json:"cells,omitempty"`
	CellPreference string `protobuf:"bytes,5,opt,name=cell_preference,json=cellPreference,proto3" json:"cell_preference,omitempty"`
	TabletOrder    string `protobuf:"bytes,6,opt,name=tablet_order,json=tabletOrder,proto3" json:"tablet_order,omitempty"`
	// contains filtered or unexported fields
}

func (*VStreamFlags) Descriptor deprecated

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

Deprecated: Use VStreamFlags.ProtoReflect.Descriptor instead.

func (*VStreamFlags) GetCellPreference

func (x *VStreamFlags) GetCellPreference() string

func (*VStreamFlags) GetCells

func (x *VStreamFlags) GetCells() string

func (*VStreamFlags) GetHeartbeatInterval

func (x *VStreamFlags) GetHeartbeatInterval() uint32

func (*VStreamFlags) GetMinimizeSkew

func (x *VStreamFlags) GetMinimizeSkew() bool

func (*VStreamFlags) GetStopOnReshard

func (x *VStreamFlags) GetStopOnReshard() bool

func (*VStreamFlags) GetTabletOrder

func (x *VStreamFlags) GetTabletOrder() string

func (*VStreamFlags) ProtoMessage

func (*VStreamFlags) ProtoMessage()

func (*VStreamFlags) ProtoReflect

func (x *VStreamFlags) ProtoReflect() protoreflect.Message

func (*VStreamFlags) Reset

func (x *VStreamFlags) Reset()

func (*VStreamFlags) String

func (x *VStreamFlags) String() string

type VStreamRequest

type VStreamRequest struct {
	CallerId   *v181.CallerID  `protobuf:"bytes,1,opt,name=caller_id,json=callerId,proto3" json:"caller_id,omitempty"`
	TabletType v182.TabletType `` /* 128-byte string literal not displayed */
	// position specifies the starting point of the bin log positions
	// as well as the keyspace-shards to pull events from.
	// position is of the form 'ks1:0@MySQL56/<mysql_pos>|ks2:-80@MySQL56/<mysql_pos>'.
	Vgtid  *v183.VGtid   `protobuf:"bytes,3,opt,name=vgtid,proto3" json:"vgtid,omitempty"`
	Filter *v183.Filter  `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter,omitempty"`
	Flags  *VStreamFlags `protobuf:"bytes,5,opt,name=flags,proto3" json:"flags,omitempty"`
	// contains filtered or unexported fields
}

VStreamRequest is the payload for VStream.

func (*VStreamRequest) Descriptor deprecated

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

Deprecated: Use VStreamRequest.ProtoReflect.Descriptor instead.

func (*VStreamRequest) GetCallerId

func (x *VStreamRequest) GetCallerId() *v181.CallerID

func (*VStreamRequest) GetFilter

func (x *VStreamRequest) GetFilter() *v183.Filter

func (*VStreamRequest) GetFlags

func (x *VStreamRequest) GetFlags() *VStreamFlags

func (*VStreamRequest) GetTabletType

func (x *VStreamRequest) GetTabletType() v182.TabletType

func (*VStreamRequest) GetVgtid

func (x *VStreamRequest) GetVgtid() *v183.VGtid

func (*VStreamRequest) ProtoMessage

func (*VStreamRequest) ProtoMessage()

func (*VStreamRequest) ProtoReflect

func (x *VStreamRequest) ProtoReflect() protoreflect.Message

func (*VStreamRequest) Reset

func (x *VStreamRequest) Reset()

func (*VStreamRequest) String

func (x *VStreamRequest) String() string

type VStreamResponse

type VStreamResponse struct {
	Events []*v183.VEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

VStreamResponse is streamed by VStream.

func (*VStreamResponse) Descriptor deprecated

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

Deprecated: Use VStreamResponse.ProtoReflect.Descriptor instead.

func (*VStreamResponse) GetEvents

func (x *VStreamResponse) GetEvents() []*v183.VEvent

func (*VStreamResponse) ProtoMessage

func (*VStreamResponse) ProtoMessage()

func (*VStreamResponse) ProtoReflect

func (x *VStreamResponse) ProtoReflect() protoreflect.Message

func (*VStreamResponse) Reset

func (x *VStreamResponse) Reset()

func (*VStreamResponse) String

func (x *VStreamResponse) String() string

Jump to

Keyboard shortcuts

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