IsTemporary returns whether the Persistence value is Temporary.
()
| 39 | |
| 40 | // IsTemporary returns whether the Persistence value is Temporary. |
| 41 | func (p Persistence) IsTemporary() bool { |
| 42 | return p == PersistenceTemporary |
| 43 | } |
| 44 | |
| 45 | // IsUnlogged returns whether the Persistence value is Unlogged. |
| 46 | func (p Persistence) IsUnlogged() bool { |
no outgoing calls
no test coverage detected