File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,15 @@ type Config struct {
109109 // get the AUTO_INCREMENT ID of each new authz without relying on MariaDB's
110110 // unique "INSERT ... RETURNING" functionality.
111111 InsertAuthzsIndividually bool
112+
113+ // NewOrdersSchema causes the SA to write to and read from the updated
114+ // orders, authorizations, and validations tables.
115+ // - Inserts go solely to the new schema
116+ // - Updates go to whichver schema hosts the row being updated
117+ // - Simple select-by-id go to whichever schema hosts the row being selected
118+ // - Complex queries go solely to the new schema (this means that authz and
119+ // order reuse work only in the new schema).
120+ NewOrdersSchema bool
112121}
113122
114123var fMu = new (sync.RWMutex )
You can’t perform that action at this time.
0 commit comments