diff options
| -rw-r--r-- | yt/yt/client/api/client_common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt/yt/client/api/client_common.h b/yt/yt/client/api/client_common.h index 642e32ee9df..f5ece90e358 100644 --- a/yt/yt/client/api/client_common.h +++ b/yt/yt/client/api/client_common.h @@ -140,6 +140,9 @@ struct TSelectRowsOptionsBase : public TTabletReadOptions , public TSuppressableAccessTrackingOptions { + //! Expected schemas for tables in a query (used for replica fallback in replicated tables). + using TExpectedTableSchemas = THashMap<NYPath::TYPath, NTableClient::TTableSchemaPtr>; + TExpectedTableSchemas ExpectedTableSchemas; //! Add |$timestamp:columnName| to result if read_mode is latest_timestamp. NTableClient::TVersionedReadOptions VersionedReadOptions; //! Limits range expanding. @@ -183,9 +186,6 @@ struct TSelectRowsOptions NYson::TYsonString PlaceholderValues; //! Native or WebAssembly execution backend. std::optional<EExecutionBackend> ExecutionBackend; - //! Expected schemas for tables in a query (used for replica fallback in replicated tables). - using TExpectedTableSchemas = THashMap<NYPath::TYPath, NTableClient::TTableSchemaPtr>; - TExpectedTableSchemas ExpectedTableSchemas; //! Explicitly allow or forbid the usage of row cache. std::optional<bool> UseLookupCache; //! Allow queries without any condition on key columns. |
