mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-23 08:08:45 +05:00
engine compiling succesfully
This commit is contained in:
@@ -54,10 +54,18 @@ func (self *SQLStorage) Flush(scriptsPath string) (err error) {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (self *SQLStorage) GetKeysForPrefix(prefix string, skipCache bool) ([]string, error) {
|
||||
func (self *SQLStorage) GetKeysForPrefix(prefix string) ([]string, error) {
|
||||
return nil, utils.ErrNotImplemented
|
||||
}
|
||||
|
||||
func (ms *SQLStorage) RebuildReverseForPrefix(prefix string) error {
|
||||
return utils.ErrNotImplemented
|
||||
}
|
||||
|
||||
func (self *SQLStorage) PreloadCacheForPrefix(prefix string) error {
|
||||
return utils.ErrNotImplemented
|
||||
}
|
||||
|
||||
func (self *SQLStorage) CreateTablesFromScript(scriptPath string) error {
|
||||
fileContent, err := ioutil.ReadFile(scriptPath)
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user