26 lines
544 B
C
26 lines
544 B
C
|
|
#ifndef PGCOLLATION_H
|
|||
|
|
#define PGCOLLATION_H
|
|||
|
|
|
|||
|
|
#include "PgNamespaceObject.h"
|
|||
|
|
#include "PgOwnedObject.h"
|
|||
|
|
#include <QString>
|
|||
|
|
#include <libpq-fe.h>
|
|||
|
|
#include "Pgsql_Value.h"
|
|||
|
|
//#include <vector>
|
|||
|
|
|
|||
|
|
class PgCollation: public PgNamespaceObject, public PgOwnedObject {
|
|||
|
|
public:
|
|||
|
|
using PgNamespaceObject::PgNamespaceObject;
|
|||
|
|
|
|||
|
|
// Oid oid; // oid
|
|||
|
|
// QString collname; // name
|
|||
|
|
// Oid collnamespace; // oid
|
|||
|
|
// Oid collowner; // oid
|
|||
|
|
int32_t collencoding; // integer
|
|||
|
|
QString collcollate; // name
|
|||
|
|
QString collctype; // name
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // PGCOLLATION_H
|