Add DBCfg var for postgres

This commit is contained in:
ionutboangiu
2024-11-04 20:06:07 +02:00
committed by Dan Christian Bogos
parent 213b67fbb0
commit 709d70a031

View File

@@ -567,6 +567,12 @@ var (
Password: utils.StringPointer(""),
},
}
PostgresDBCfg = DBCfg{
StorDB: &DBParams{
Type: utils.StringPointer(utils.MetaPostgres),
Port: utils.IntPointer(5432),
},
}
)
func LoadCSVsWithCGRLoader(t testing.TB, cfgPath, tpPath string, logBuffer io.Writer, csvFiles map[string]string, extraFlags ...string) {