GetREDOWALFile returns the latest checkpoint's REDO WAL file
()
| 82 | |
| 83 | // GetREDOWALFile returns the latest checkpoint's REDO WAL file |
| 84 | func (p PgControlData) GetREDOWALFile() string { |
| 85 | return p[pgControlDataKeyREDOWALFile] |
| 86 | } |
| 87 | |
| 88 | // TryGetREDOWALFile returns the latest checkpoint's REDO WAL file |
| 89 | func (p PgControlData) TryGetREDOWALFile() (string, bool) { |
no outgoing calls
no test coverage detected