Skip to content

Commit 86669b8

Browse files
author
SSOfy
committed
fix
1 parent 202d187 commit 86669b8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
File renamed without changes.

src/Datasource/PGConnection.ts src/Datasource/PGPoolConnection.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {Datasource} from '.';
22
import {Connection} from './Connection';
33
import {Pool} from 'pg';
44

5-
export class PGConnection extends Connection {
5+
export class PGPoolConnection extends Connection {
66
protected pool: Pool;
77

88
constructor(pool: Pool) {

src/Datasource/index.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import * as ParametersInternal from './Criteria'
33
import * as ConnectionInternal from './Connection'
44
import * as MongooseConnectionInternal from './MongooseConnection'
55
import * as MongoDBConnectionInternal from './MongoDBConnection'
6-
import * as MySQLConnectionInternal from './MySQLConnection'
7-
import * as PGConnectionInternal from './PGConnection'
6+
import * as MySQLPoolConnectionInternal from './MySQLPoolConnection'
7+
import * as PGPoolConnectionInternal from './PGPoolConnection'
88
import * as DynamoDBConnectionInternal from './DynamoDBConnection'
99
import * as PrismaConnectionInternal from './PrismaConnection'
1010
import * as SequelizeConnectionInternal from './SequelizeConnection'
@@ -16,8 +16,8 @@ export namespace Datasource {
1616
export import MongoDBConnection = MongoDBConnectionInternal.MongoDBConnection;
1717
export import MongooseConnection = MongooseConnectionInternal.MongooseConnection;
1818
export import DynamoDBConnection = DynamoDBConnectionInternal.DynamoDBConnection;
19-
export import PGConnectionConnection = PGConnectionInternal.PGConnection;
20-
export import MySQLPoolConnection = MySQLConnectionInternal.MySQLPoolConnection;
19+
export import PGPoolConnection = PGPoolConnectionInternal.PGPoolConnection;
20+
export import MySQLPoolConnection = MySQLPoolConnectionInternal.MySQLPoolConnection;
2121
export import PrismaConnection = PrismaConnectionInternal.PrismaConnection;
2222
export import SequelizeConnection = SequelizeConnectionInternal.SequelizeConnection;
2323
}

0 commit comments

Comments
 (0)