More case fixes of filenames.

This commit is contained in:
eelke 2017-02-12 15:51:36 +01:00
parent 20af12535e
commit e71ef2e6df
41 changed files with 258 additions and 123 deletions

View file

@ -1,26 +0,0 @@
#ifndef PGCLASS_H
#define PGCLASS_H
#include <QString>
#include <pgsql/libpq-fe.h>
class PgClass {
public:
PgClass();
Oid oid = InvalidOid;
QString relname;
Oid relnamespace = InvalidOid;
Oid reltype = InvalidOid;
Oid reloftype = InvalidOid;
Oid relowner = InvalidOid;
Oid relam = InvalidOid;
Oid relfilename = InvalidOid;
Oid reltablespace = InvalidOid;
int relpages_est = 0;
float reltuples_est = 0;
int relallvisible = 0;
};
#endif // PGCLASS_H