2019-06-13 19:25:01 +02:00
|
|
|
// +build wflib
|
|
|
|
|
|
|
|
/*
|
2020-02-12 17:39:39 +01:00
|
|
|
* Copyright © 2019-2020 A Bunch Tell LLC.
|
2019-06-13 19:25:01 +02:00
|
|
|
*
|
|
|
|
* This file is part of WriteFreely.
|
|
|
|
*
|
|
|
|
* WriteFreely is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, included
|
|
|
|
* in the LICENSE file in this source code package.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// This file contains dummy database funcs for when writefreely is used as a
|
|
|
|
// library.
|
|
|
|
|
|
|
|
package writefreely
|
|
|
|
|
|
|
|
func (db *datastore) isDuplicateKeyErr(err error) bool {
|
|
|
|
return false
|
|
|
|
}
|
2020-02-12 17:39:39 +01:00
|
|
|
|
|
|
|
func (db *datastore) isIgnorableError(err error) bool {
|
|
|
|
return false
|
|
|
|
}
|
2020-03-27 16:48:20 +01:00
|
|
|
|
|
|
|
func (db *datastore) isHighLoadError(err error) bool {
|
|
|
|
return false
|
|
|
|
}
|