diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2022-10-22 16:41:27 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-22 16:41:27 +1100 |
| commit | 1ea29cb2c24b44d15dffed3964e41e56b32da02d (patch) | |
| tree | f31fb4a2b54478c5f887e45564d6b8585d9878cc /internal/storage/const.go | |
| parent | 1d821a0d3a15b853e50c44aa786b846213f0355c (diff) | |
feat(storage): unix socket support (#4231)
Support for unix sockets for MySQL and PostgreSQL.
Diffstat (limited to 'internal/storage/const.go')
| -rw-r--r-- | internal/storage/const.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/storage/const.go b/internal/storage/const.go index 825caae04..39645979d 100644 --- a/internal/storage/const.go +++ b/internal/storage/const.go @@ -41,7 +41,8 @@ const ( ) const ( - sqlNetworkTypeTCP = "tcp" + sqlNetworkTypeTCP = "tcp" + sqlNetworkTypeUnixSocket = "unix" ) const ( |
