Support 'postgresql' schema designator (#19275)

Этот коммит содержится в:
Szymon Gibała
2022-01-12 13:23:56 +01:00
коммит произвёл GitHub
родитель 664af506a3
Коммит 4a1a0863c4
3 изменённых файлов: 10 добавлений и 3 удалений

Просмотреть файл

@@ -153,7 +153,7 @@ func parseDSN(dsn string) (string, string, error) {
// Strip off the mysql:// for the dsn with which to connect.
dsn = s[1]
case "postgres":
case "postgres", "postgresql":
// No changes required
default: