SingleStoreCreateSetOperatorFn Type — drizzle-orm Architecture
Architecture documentation for the SingleStoreCreateSetOperatorFn type/interface in select.types.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD d0b44804_277e_9153_96d1_37a4e5459832["SingleStoreCreateSetOperatorFn"] e6e44a09_c7fd_f1ce_bd2f_ab45da60f424["select.types.ts"] d0b44804_277e_9153_96d1_37a4e5459832 -->|defined in| e6e44a09_c7fd_f1ce_bd2f_ab45da60f424 style d0b44804_277e_9153_96d1_37a4e5459832 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/singlestore-core/query-builders/select.types.ts lines 419–461
export type SingleStoreCreateSetOperatorFn = <
TTableName extends string | undefined,
TSelection extends ColumnsSelection,
TSelectMode extends SelectMode,
TValue extends SingleStoreSetOperatorWithResult<TResult>,
TRest extends SingleStoreSetOperatorWithResult<TResult>[],
TPreparedQueryHKT extends PreparedQueryHKTBase = PreparedQueryHKTBase,
TNullabilityMap extends Record<string, JoinNullability> = TTableName extends string ? Record<TTableName, 'not-null'>
: {},
TDynamic extends boolean = false,
TExcludedMethods extends string = never,
TResult extends any[] = SelectResult<TSelection, TSelectMode, TNullabilityMap>[],
TSelectedFields extends ColumnsSelection = BuildSubquerySelection<TSelection, TNullabilityMap>,
>(
leftSelect: SingleStoreSetOperatorInterface<
TTableName,
TSelection,
TSelectMode,
TPreparedQueryHKT,
TNullabilityMap,
TDynamic,
TExcludedMethods,
TResult,
TSelectedFields
>,
rightSelect: SetOperatorRightSelect<TValue, TResult>,
...restSelects: SetOperatorRestSelect<TRest, TResult>
) => SingleStoreSelectWithout<
SingleStoreSelectBase<
TTableName,
TSelection,
TSelectMode,
TPreparedQueryHKT,
TNullabilityMap,
TDynamic,
TExcludedMethods,
TResult,
TSelectedFields
>,
false,
SingleStoreSetOperatorExcludedMethods,
true
>;
Source
Frequently Asked Questions
What is the SingleStoreCreateSetOperatorFn type?
SingleStoreCreateSetOperatorFn is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/singlestore-core/query-builders/select.types.ts.
Where is SingleStoreCreateSetOperatorFn defined?
SingleStoreCreateSetOperatorFn is defined in drizzle-orm/src/singlestore-core/query-builders/select.types.ts at line 419.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free