Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drizzle-orm/src/gel-core/policies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface GelPolicyConfig {
withCheck?: SQL;
}

export class GelPolicy implements GelPolicyConfig {
export class GelPolicy {
static readonly [entityKind]: string = 'GelPolicy';

readonly as: GelPolicyConfig['as'];
Expand Down
2 changes: 1 addition & 1 deletion drizzle-orm/src/mysql-core/query-builders/select.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export type MySqlSetOperatorExcludedMethods =
export type MySqlSelectWithout<
T extends AnyMySqlSelectQueryBuilder,
TDynamic extends boolean,
K extends keyof T & string,
K extends string,
TResetExcluded extends boolean = false,
> = TDynamic extends true ? T : Omit<
MySqlSelectKind<
Expand Down
2 changes: 1 addition & 1 deletion drizzle-orm/src/pg-core/policies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface PgPolicyConfig {
withCheck?: SQL;
}

export class PgPolicy implements PgPolicyConfig {
export class PgPolicy {
static readonly [entityKind]: string = 'PgPolicy';

readonly as: PgPolicyConfig['as'];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export type SingleStoreSetOperatorExcludedMethods =
export type SingleStoreSelectWithout<
T extends AnySingleStoreSelectQueryBuilder,
TDynamic extends boolean,
K extends keyof T & string,
K extends string,
TResetExcluded extends boolean = false,
> = TDynamic extends true ? T : Omit<
SingleStoreSelectKind<
Expand Down
2 changes: 1 addition & 1 deletion drizzle-orm/src/sqlite-core/query-builders/select.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export type CreateSQLiteSelectFromBuilderMode<
export type SQLiteSelectWithout<
T extends AnySQLiteSelectQueryBuilder,
TDynamic extends boolean,
K extends keyof T & string,
K extends string,
TResetExcluded extends boolean = false,
> = TDynamic extends true ? T : Omit<
SQLiteSelectKind<
Expand Down