driftsql 1.0.14 → 1.0.15
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/index.mjs +4 -8
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -715,20 +715,16 @@ class SQLClient {
|
|
|
715
715
|
}
|
|
716
716
|
}
|
|
717
717
|
function createPostgresClient(config) {
|
|
718
|
-
|
|
719
|
-
return new SQLClient({ driver: new PostgresDriver2(config) });
|
|
718
|
+
return new SQLClient({ driver: new PostgresDriver(config) });
|
|
720
719
|
}
|
|
721
720
|
function createLibSQLClient(config) {
|
|
722
|
-
|
|
723
|
-
return new SQLClient({ driver: new LibSQLDriver2(config) });
|
|
721
|
+
return new SQLClient({ driver: new LibSQLDriver(config) });
|
|
724
722
|
}
|
|
725
723
|
function createMySQLClient(config) {
|
|
726
|
-
|
|
727
|
-
return new SQLClient({ driver: new MySQLDriver2(config) });
|
|
724
|
+
return new SQLClient({ driver: new MySQLDriver(config) });
|
|
728
725
|
}
|
|
729
726
|
function createSqliteClient(config) {
|
|
730
|
-
|
|
731
|
-
return new SQLClient({ driver: new SqliteDriver2(config) });
|
|
727
|
+
return new SQLClient({ driver: new SqliteDriver(config) });
|
|
732
728
|
}
|
|
733
729
|
const DriftSQLClient = SQLClient;
|
|
734
730
|
|