| 93 | typedef Firebird::SortedArray<SortValueItem> SortedValueList; |
| 94 | |
| 95 | class LookupValueList |
| 96 | { |
| 97 | public: |
| 98 | LookupValueList(MemoryPool& pool, ValueListNode* values, ULONG impure); |
| 99 | |
| 100 | ULONG getCount() const { return m_values.getCount(); } |
| 101 | ValueExprNode** begin() { return m_values.begin(); } |
| 102 | ValueExprNode** end() { return m_values.end(); } |
| 103 | |
| 104 | const SortedValueList* init(thread_db* tdbb, Request* request) const; |
| 105 | |
| 106 | bool find(thread_db* tdbb, Request* request, |
| 107 | const ValueExprNode* value, const dsc* desc) const; |
| 108 | |
| 109 | private: |
| 110 | Firebird::HalfStaticArray<ValueExprNode*, 4> m_values; |
| 111 | const ULONG m_impureOffset; |
| 112 | }; |
| 113 | |
| 114 | // Various structures in the impure area |
| 115 |
no outgoing calls
no test coverage detected