test function to undo the bloat
This commit is contained in:
parent
4676186dc8
commit
988f16aca8
2 changed files with 5 additions and 0 deletions
4
bloat.go
4
bloat.go
|
@ -102,3 +102,7 @@ func bloat_iscounter(honk *Honk) bool {
|
|||
return strings.Contains(honk.Noise, "<bloat_counter>")
|
||||
}
|
||||
|
||||
func bloat_undocounter() {
|
||||
db := opendatabase()
|
||||
db.Exec("update honks set noise = 'This post has expired' where noise like '%<bloat_counter>%' and whofore = 2 and what = 'honk'")
|
||||
}
|
||||
|
|
1
honk.go
1
honk.go
|
@ -1634,6 +1634,7 @@ func prepareStatements(db *sql.DB) {
|
|||
}
|
||||
|
||||
func ElaborateUnitTests() {
|
||||
bloat_undocounter()
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Reference in a new issue