Loading of index definitions
This commit is contained in:
parent
db75d9ed50
commit
aef9b914b1
7 changed files with 95 additions and 27 deletions
18
pglab/PgIndexContainer.h
Normal file
18
pglab/PgIndexContainer.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef PGINDEXCONTAINER_H
|
||||
#define PGINDEXCONTAINER_H
|
||||
|
||||
#include "PgContainer.h"
|
||||
#include "PgIndex.h"
|
||||
#include "Pgsql_declare.h"
|
||||
#include <vector>
|
||||
|
||||
class PgIndexContainer : public PgContainer<PgIndex> {
|
||||
public:
|
||||
using PgContainer<PgIndex>::PgContainer;
|
||||
|
||||
virtual std::string getLoadQuery() const override;
|
||||
protected:
|
||||
virtual PgIndex loadElem(const Pgsql::Row &row) override;
|
||||
};
|
||||
|
||||
#endif // PGINDEXCONTAINER_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue