drizzle-databend 0.1.10 → 0.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dialect.d.ts +2 -2
- package/dist/driver.d.ts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +600 -528
- package/dist/session.d.ts +3 -3
- package/package.json +9 -6
- package/src/client.ts +1 -1
- package/src/columns.ts +1 -1
- package/src/dialect.ts +6 -6
- package/src/driver.ts +9 -9
- package/src/index.ts +3 -3
- package/src/migrator.ts +1 -1
- package/src/pool.ts +3 -1
- package/src/session.ts +6 -6
- package/src/sql/result-mapper.ts +3 -4
- package/src/sql/selection.ts +1 -1
package/dist/dialect.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import { type DriverValueEncoder, type QueryTypingsValue } from 'drizzle-orm';
|
|
1
2
|
import { entityKind } from 'drizzle-orm/entity';
|
|
2
3
|
import type { MigrationConfig, MigrationMeta } from 'drizzle-orm/migrator';
|
|
3
|
-
import { PgDialect, PgSession } from 'drizzle-orm/pg-core';
|
|
4
|
-
import { type DriverValueEncoder, type QueryTypingsValue } from 'drizzle-orm';
|
|
4
|
+
import { PgDialect, type PgSession } from 'drizzle-orm/pg-core';
|
|
5
5
|
export declare class DatabendDialect extends PgDialect {
|
|
6
6
|
static readonly [entityKind]: string;
|
|
7
7
|
areSavepointsUnsupported(): boolean;
|
package/dist/driver.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ import { entityKind } from 'drizzle-orm/entity';
|
|
|
3
3
|
import type { Logger } from 'drizzle-orm/logger';
|
|
4
4
|
import { PgDatabase } from 'drizzle-orm/pg-core/db';
|
|
5
5
|
import { type ExtractTablesWithRelations, type RelationalSchemaConfig, type TablesRelationalConfig } from 'drizzle-orm/relations';
|
|
6
|
-
import {
|
|
7
|
-
import type { DatabendClientLike, DatabendQueryResultHKT, DatabendTransaction } from './session.ts';
|
|
8
|
-
import { DatabendSession } from './session.ts';
|
|
6
|
+
import type { DrizzleConfig } from 'drizzle-orm/utils';
|
|
9
7
|
import { DatabendDialect } from './dialect.ts';
|
|
10
8
|
import { type DatabendPoolConfig } from './pool.ts';
|
|
9
|
+
import type { DatabendClientLike, DatabendQueryResultHKT, DatabendTransaction } from './session.ts';
|
|
10
|
+
import { DatabendSession } from './session.ts';
|
|
11
11
|
export interface DatabendDriverOptions {
|
|
12
12
|
logger?: Logger;
|
|
13
13
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './session.ts';
|
|
1
|
+
export * from './client.ts';
|
|
3
2
|
export * from './columns.ts';
|
|
3
|
+
export * from './driver.ts';
|
|
4
4
|
export * from './migrator.ts';
|
|
5
|
-
export * from './client.ts';
|
|
6
5
|
export * from './pool.ts';
|
|
6
|
+
export * from './session.ts';
|