move postgres to a separate package

This commit is contained in:
dswbx
2025-03-14 09:42:51 +01:00
parent b1b2e97a5a
commit c4aaa5a90b
20 changed files with 381 additions and 80 deletions

View File

@@ -16,10 +16,6 @@ export class SqliteConnection extends Connection {
);
}
override supportsIndices(): boolean {
return true;
}
override getFieldSchema(spec: FieldSpec): SchemaResponse {
this.validateFieldSpecType(spec.type);
let type: ColumnDataType = spec.type;
@@ -47,8 +43,4 @@ export class SqliteConnection extends Connection {
},
] as const;
}
override async close(): Promise<void> {
// no-op
}
}