(ctx context.Context, statement string, params map[string]interface{})
| 435 | } |
| 436 | |
| 437 | func (lds *LeakyDataStore) ExplainQuery(ctx context.Context, statement string, params map[string]interface{}) (plan map[string]interface{}, err error) { |
| 438 | n1qlStore, err := lds.getN1QLStore() |
| 439 | if err != nil { |
| 440 | return nil, err |
| 441 | } |
| 442 | return n1qlStore.ExplainQuery(ctx, statement, params) |
| 443 | } |
| 444 | |
| 445 | func (lds *LeakyDataStore) EscapedKeyspace() string { |
| 446 | n1qlStore, err := lds.getN1QLStore() |
nothing calls this directly
no test coverage detected