()
| 2028 | } |
| 2029 | |
| 2030 | func (c *DatabaseCollection) AllowExternalRevBodyStorage() bool { |
| 2031 | |
| 2032 | // Support unit testing w/out xattrs enabled |
| 2033 | if base.TestExternalRevStorage { |
| 2034 | return false |
| 2035 | } |
| 2036 | return !c.UseXattrs() |
| 2037 | } |
| 2038 | |
| 2039 | func (context *DatabaseContext) SetUserViewsEnabled(value bool) { |
| 2040 | if context.Options.UnsupportedOptions == nil { |
no test coverage detected