engine compiling succesfully

This commit is contained in:
Radu Ioan Fericean
2016-08-09 21:17:35 +03:00
parent 447974dd7c
commit a5e44fd590
41 changed files with 1246 additions and 956 deletions

View File

@@ -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 {