mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
View change last timestamp for functions
Выводит время последнего изменения функции/процедуры, если включено track_commit_timestamp=on.
This commit is contained in:
parent
7d24d91b0f
commit
ece60b55de
2 changed files with 15 additions and 2 deletions
|
|
@ -194,6 +194,13 @@ public:
|
|||
{
|
||||
return isWindow;
|
||||
}
|
||||
void iSetTimestampCommit(wxString& ts)
|
||||
{
|
||||
timestampCommit=ts;
|
||||
}
|
||||
wxString GetTimestampCommit() {
|
||||
return timestampCommit;
|
||||
}
|
||||
void iSetIsWindow(bool b)
|
||||
{
|
||||
isWindow = b;
|
||||
|
|
@ -259,7 +266,7 @@ protected:
|
|||
pgFunction(pgSchema *newSchema, int newType, const wxString &newName = wxT(""));
|
||||
|
||||
private:
|
||||
wxString returnType, language, volatility, parallel, source, bin;
|
||||
wxString returnType, language, volatility, parallel, source, bin, timestampCommit;
|
||||
wxArrayString argNamesArray, argTypesArray, argModesArray, argDefsArray;
|
||||
bool returnAsSet, secureDefiner, isStrict, isWindow, isLeakProof;
|
||||
long argCount, cost, rows, argDefValCount, procType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue