Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: marbar3778 <marbar3778@yahoo.com>
11 lines
304 B
Go
11 lines
304 B
Go
package postgres
|
|
|
|
// Options are the options for module and object indexers.
|
|
type Options struct {
|
|
// DisableRetainDeletions disables retain deletions functionality even on object types that have it set.
|
|
DisableRetainDeletions bool
|
|
|
|
// Logger is the logger for the indexer to use.
|
|
Logger SqlLogger
|
|
}
|