()
| 121 | } |
| 122 | |
| 123 | func (h *Handler) getDefaultSchema() string { |
| 124 | h.mu.Lock() |
| 125 | defer h.mu.Unlock() |
| 126 | if h.metadata == nil { |
| 127 | return "" |
| 128 | } |
| 129 | return h.metadata.Schema |
| 130 | } |
| 131 | |
| 132 | func (h *Handler) getInstanceID() string { |
| 133 | h.mu.Lock() |
no outgoing calls
no test coverage detected