()
| 542 | } |
| 543 | |
| 544 | func (qc *AQLQueryContext) releaseSchema() { |
| 545 | for _, schema := range qc.TableSchemaByName { |
| 546 | schema.RUnlock() |
| 547 | } |
| 548 | } |
| 549 | |
| 550 | // resolveColumn resolves the VarRef identifier against the schema, |
| 551 | // and returns the matched tableID (query scoped) and columnID (schema scoped). |
no test coverage detected