Merge remote-tracking branch 'origin' into sriram/postgres-config-page-tls-regrouping

This commit is contained in:
yesoreyeram
2025-07-07 15:44:03 +01:00
114 changed files with 3413 additions and 1045 deletions
@@ -37,7 +37,16 @@ type SqlQueryResultTransformer interface {
GetConverterList() []sqlutil.StringConverter
}
type ConnectionType string
const (
ConnectionTypeDefault ConnectionType = "default"
ConnectionTypeConnectionString ConnectionType = "connectionString"
)
type JsonData struct {
ConnectionType ConnectionType `json:"connectionType"`
MaxOpenConns int `json:"maxOpenConns"`
MaxIdleConns int `json:"maxIdleConns"`
ConnMaxLifetime int `json:"connMaxLifetime"`