(mapKey int)
| 1727 | } |
| 1728 | |
| 1729 | func (v *ASTBuilder) getInfoByKey(mapKey int) (qLevel, qType, index int) { |
| 1730 | qLevel = mapKey / 1000 |
| 1731 | qType = (mapKey % 1000) / 100 |
| 1732 | index = (mapKey % 1000) % 100 |
| 1733 | return |
| 1734 | } |
| 1735 | |
| 1736 | func (v *ASTBuilder) isValidWithOrSubQuery(s2aCtx *SQL2AqlContext) (bool, error) { |
| 1737 | var isTrue, exist bool |
no outgoing calls
no test coverage detected