build
This commit is contained in:
parent
0ec46fe0b2
commit
9d2a667667
|
|
@ -31,6 +31,6 @@ export declare class MysqlStore<ED extends EntityDict & BaseEntityDict, Cxt exte
|
||||||
commit(txnId: string): Promise<void>;
|
commit(txnId: string): Promise<void>;
|
||||||
rollback(txnId: string): Promise<void>;
|
rollback(txnId: string): Promise<void>;
|
||||||
connect(): void;
|
connect(): void;
|
||||||
disconnect(): void;
|
disconnect(): Promise<void>;
|
||||||
initialize(option: CreateEntityOption): Promise<void>;
|
initialize(option: CreateEntityOption): Promise<void>;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -288,8 +288,8 @@ class MysqlStore extends CascadeStore_1.CascadeStore {
|
||||||
connect() {
|
connect() {
|
||||||
this.connector.connect();
|
this.connector.connect();
|
||||||
}
|
}
|
||||||
disconnect() {
|
async disconnect() {
|
||||||
this.connector.disconnect();
|
await this.connector.disconnect();
|
||||||
}
|
}
|
||||||
async initialize(option) {
|
async initialize(option) {
|
||||||
const schema = this.getSchema();
|
const schema = this.getSchema();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue