Current Is this schema object current? ie, have we refreshed it from source since refresh interval.
()
| 595 | // Current Is this schema object current? ie, have we refreshed it from |
| 596 | // source since refresh interval. |
| 597 | func (m *Table) Current() bool { return m.Since(SchemaRefreshInterval) } |
| 598 | |
| 599 | // SetRefreshed update the refreshed date to now. |
| 600 | func (m *Table) SetRefreshed() { m.lastRefreshed = time.Now() } |