(ctx context.Context, cfg regosql.ConvertConfig)
| 356 | } |
| 357 | |
| 358 | func (s *PreparedRecorder) CompileToSQL(ctx context.Context, cfg regosql.ConvertConfig) (string, error) { |
| 359 | s.rw.Lock() |
| 360 | defer s.rw.Unlock() |
| 361 | |
| 362 | s.usingSQL = true |
| 363 | return s.prepped.CompileToSQL(ctx, cfg) |
| 364 | } |
| 365 | |
| 366 | // FakeAuthorizer is an Authorizer that will return an error based on the |
| 367 | // "ConditionalReturn" function. By default, **no error** is returned. |
nothing calls this directly
no test coverage detected