Struct ExecuteOptions

Source
pub struct ExecuteOptions {
    pub included_fields: i32,
    pub client_found_rows: bool,
    pub workload: i32,
    pub sql_select_limit: i64,
    pub transaction_isolation: i32,
    pub skip_query_plan_cache: bool,
    pub planner_version: i32,
    pub has_created_temp_tables: bool,
    pub consolidator: i32,
    pub transaction_access_mode: Vec<i32>,
    pub workload_name: String,
    pub priority: String,
}
Expand description

ExecuteOptions is passed around for all Execute calls.

Fields§

§included_fields: i32

Controls what fields are returned in Field message responses from mysql, i.e. field name, table name, etc. This is an optimization for high-QPS queries where the client knows what it’s getting

§client_found_rows: bool

client_rows_found specifies if rows_affected should return rows found instead of rows affected. Behavior is defined by MySQL’s CLIENT_FOUND_ROWS flag.

§workload: i32

workload specifies the type of workload: OLTP: DMLs allowed, results have row count limit, and query timeouts are shorter. OLAP: DMLS not allowed, no limit on row count, timeouts can be as high as desired. DBA: no limit on rowcount or timeout, all queries allowed but intended for long DMLs and DDLs.

§sql_select_limit: i64

sql_select_limit sets an implicit limit on all select statements. Since vitess also sets a rowcount limit on queries, the smallest value wins.

§transaction_isolation: i32§skip_query_plan_cache: bool

skip_query_plan_cache specifies if the query plan should be cached by vitess. By default all query plans are cached.

§planner_version: i32

PlannerVersion specifies which planner to use. If DEFAULT is chosen, whatever vtgate was started with will be used

§has_created_temp_tables: bool

has_created_temp_tables signals whether plans created in this session should be cached or not if the user has created temp tables, Vitess will not reuse plans created for this session in other sessions. The current session can still use other sessions cached plans.

§consolidator: i32§transaction_access_mode: Vec<i32>

TransactionAccessMode specifies the access modes to be used while starting the transaction i.e. READ WRITE/READ ONLY/WITH CONSISTENT SNAPSHOT If not specified, the transaction will be started with the default access mode on the connection.

§workload_name: String

WorkloadName specifies the name of the workload as indicated in query directives. This is used for instrumentation in metrics and tracing spans.

§priority: String

priority specifies the priority of the query, between 0 and 100. This is leveraged by the transaction throttler to determine whether, under resource contention, a query should or should not be throttled.

Implementations§

Source§

impl ExecuteOptions

Source

pub fn included_fields(&self) -> IncludedFields

Returns the enum value of included_fields, or the default if the field is set to an invalid enum value.

Source

pub fn set_included_fields(&mut self, value: IncludedFields)

Sets included_fields to the provided enum value.

Source

pub fn workload(&self) -> Workload

Returns the enum value of workload, or the default if the field is set to an invalid enum value.

Source

pub fn set_workload(&mut self, value: Workload)

Sets workload to the provided enum value.

Source

pub fn transaction_isolation(&self) -> TransactionIsolation

Returns the enum value of transaction_isolation, or the default if the field is set to an invalid enum value.

Source

pub fn set_transaction_isolation(&mut self, value: TransactionIsolation)

Sets transaction_isolation to the provided enum value.

Source

pub fn planner_version(&self) -> PlannerVersion

Returns the enum value of planner_version, or the default if the field is set to an invalid enum value.

Source

pub fn set_planner_version(&mut self, value: PlannerVersion)

Sets planner_version to the provided enum value.

Source

pub fn consolidator(&self) -> Consolidator

Returns the enum value of consolidator, or the default if the field is set to an invalid enum value.

Source

pub fn set_consolidator(&mut self, value: Consolidator)

Sets consolidator to the provided enum value.

Source

pub fn transaction_access_mode( &self, ) -> FilterMap<Cloned<Iter<'_, i32>>, fn(i32) -> Option<TransactionAccessMode>>

Returns an iterator which yields the valid enum values contained in transaction_access_mode.

Source

pub fn push_transaction_access_mode(&mut self, value: TransactionAccessMode)

Appends the provided enum value to transaction_access_mode.

Trait Implementations§

Source§

impl Clone for ExecuteOptions

Source§

fn clone(&self) -> ExecuteOptions

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ExecuteOptions

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ExecuteOptions

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Message for ExecuteOptions

Source§

fn encoded_len(&self) -> usize

Returns the encoded length of the message without a length delimiter.
Source§

fn clear(&mut self)

Clears the message, resetting all fields to their default.
Source§

fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message to a buffer. Read more
Source§

fn encode_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message to a newly allocated buffer.
Source§

fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
where B: BufMut, Self: Sized,

Encodes the message with a length-delimiter to a buffer. Read more
Source§

fn encode_length_delimited_to_vec(&self) -> Vec<u8>
where Self: Sized,

Encodes the message with a length-delimiter to a newly allocated buffer.
Source§

fn decode<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes an instance of the message from a buffer. Read more
Source§

fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
where B: Buf, Self: Default,

Decodes a length-delimited instance of the message from the buffer.
Source§

fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes an instance of the message from a buffer, and merges it into self. Read more
Source§

fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
where B: Buf, Self: Sized,

Decodes a length-delimited instance of the message from buffer, and merges it into self.
Source§

impl PartialEq for ExecuteOptions

Source§

fn eq(&self, other: &ExecuteOptions) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for ExecuteOptions

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more