Overview of triggers extended with function name and arguments.
Did a lot of refactoring on the catalog to keep things clean.
This commit is contained in:
parent
35813ae926
commit
fcb191f2cc
44 changed files with 797 additions and 404 deletions
|
|
@ -1,6 +1,19 @@
|
|||
#include "PgObject.h"
|
||||
#include "PgObject.h"
|
||||
#include "SqlFormattingUtils.h"
|
||||
|
||||
PgObject::PgObject()
|
||||
PgObject::PgObject(PgDatabaseCatalog& cat)
|
||||
: m_catalog(&cat)
|
||||
{}
|
||||
|
||||
PgObject::~PgObject()
|
||||
{}
|
||||
|
||||
QString PgObject::quotedObjectName() const
|
||||
{
|
||||
|
||||
return quoteIdent(objectName());
|
||||
}
|
||||
|
||||
const PgDatabaseCatalog& PgObject::catalog() const
|
||||
{
|
||||
return *m_catalog;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue