| 69 | |
| 70 | public: |
| 71 | DsqlStatement(MemoryPool& pool, dsql_dbb* aDsqlAttachment) |
| 72 | : PermanentStorage(pool), |
| 73 | dsqlAttachment(aDsqlAttachment), |
| 74 | type(TYPE_SELECT), |
| 75 | flags(0), |
| 76 | blrVersion(5), |
| 77 | ports(pool) |
| 78 | { |
| 79 | pool.setStatsGroup(memoryStats); |
| 80 | } |
| 81 | |
| 82 | protected: |
| 83 | virtual ~DsqlStatement() = default; |
nothing calls this directly
no test coverage detected