small fix ( diff see here:
https://github.com/postgres-impulsm/pgadmin3/commit/72f381aa1964d5630f3ada44768bc562911102e9
)
if we using ``pg_get_functiondef(func_oid)`` --
in this case -- no need to write additional ``ALTER FUNCTION ... = ...
;``.
Andrej Antonov писал 2015-12-14 10:51:
thank you, Dmitriy. I agree -- this-fix should works better.
I applyed this-fix to my local-git-branches ("REL-1_20_0-impulsm" and
"fix-to-use-pg_get_functiondef"). works good.
Dmitriy Olshevskiy писал 2015-12-13 18:04:
Hi, Andrej!
Here is small fix of your patch - can you check it please?
I think there must be wxwidgets function IsEmpty() instead of double
negation,
because type of the variable is wxstring. Also I added the Trim()
function before
check if function definition is empty or not.
On 08.12.2015 11:50, Andrej Antonov wrote:
patch: fix to use ``pg_get_functiondef()`` [see attachment file]
it is copy of pull-request
https://github.com/postgres/pgadmin3/pull/12 [1]
thank you!
--
Dmitriy Olshevskiy
Links:
------
[1] https://github.com/postgres/pgadmin3/pull/12
--
Андрей Антонов,
инженер-программист отдела информационных технологий и программирования,
компания «Импульс М»
From 93170fb2ac121da60a10e53585bee180bc2dc652 Mon Sep 17 00:00:00 2001
From: "Andrej Antonov (impulsm.work)" <[email protected]>
Date: Mon, 7 Dec 2015 18:26:52 +0300
Subject: [PATCH] using ``pg_get_functiondef(..)``
---
pgadmin/include/schema/pgFunction.h | 10 ++++++-
pgadmin/schema/pgFunction.cpp | 53 ++++++++++++++++++++++++++-----------
2 files changed, 46 insertions(+), 17 deletions(-)
diff --git a/pgadmin/include/schema/pgFunction.h b/pgadmin/include/schema/pgFunction.h
index 7cd6ffd..bc39865 100644
--- a/pgadmin/include/schema/pgFunction.h
+++ b/pgadmin/include/schema/pgFunction.h
@@ -118,6 +118,14 @@ public:
{
source = s;
}
+ wxString GetFunctionDefByPg() const
+ {
+ return functionDefByPg;
+ }
+ void iSetFunctionDefByPg(const wxString &s)
+ {
+ functionDefByPg = s;
+ }
wxString GetBin() const
{
return bin;
@@ -251,7 +259,7 @@ protected:
pgFunction(pgSchema *newSchema, int newType, const wxString &newName = wxT(""));
private:
- wxString returnType, language, volatility, source, bin;
+ wxString returnType, language, volatility, source, functionDefByPg, bin;
wxArrayString argNamesArray, argTypesArray, argModesArray, argDefsArray;
bool returnAsSet, secureDefiner, isStrict, isWindow, isLeakProof;
long argCount, cost, rows, argDefValCount, procType;
diff --git a/pgadmin/schema/pgFunction.cpp b/pgadmin/schema/pgFunction.cpp
index bd0342a..2a39079 100644
--- a/pgadmin/schema/pgFunction.cpp
+++ b/pgadmin/schema/pgFunction.cpp
@@ -287,12 +287,19 @@ wxString pgFunction::GetSql(ctlTree *browser)
wxString qtSig = GetQuotedFullIdentifier() + wxT("(") + GetArgSigList() + wxT(")");
sql = wxT("-- Function: ") + qtSig + wxT("\n\n")
- + wxT("-- DROP FUNCTION ") + qtSig + wxT(";")
- + wxT("\n\nCREATE OR REPLACE FUNCTION ") + qtName;
-
- // Use Oracle style syntax for edb-spl functions
- if (GetLanguage() == wxT("edbspl") && GetProcType() == 2)
+ + wxT("-- DROP FUNCTION ") + qtSig + wxT(";\n\n");
+
+ wxString functionDefByPgTrim = GetFunctionDefByPg().Trim();
+ if (!functionDefByPgTrim.IsEmpty())
+ {
+ sql += functionDefByPgTrim;
+ }
+ else if (GetLanguage() == wxT("edbspl") && GetProcType() == 2)
{
+ sql += wxT("CREATE OR REPLACE FUNCTION ") + qtName;
+
+ // Use Oracle style syntax for edb-spl functions
+
sql += wxT("\nRETURN ");
sql += GetReturnType();
@@ -304,6 +311,8 @@ wxString pgFunction::GetSql(ctlTree *browser)
}
else
{
+ sql += wxT("CREATE OR REPLACE FUNCTION ") + qtName;
+
sql += wxT("\n RETURNS ");
if (GetReturnAsSet() && !GetReturnType().StartsWith(wxT("TABLE")))
sql += wxT("SETOF ");
@@ -347,16 +356,19 @@ wxString pgFunction::GetSql(ctlTree *browser)
if (!sql.Strip(wxString::both).EndsWith(wxT(";")))
sql += wxT(";");
- size_t i;
- for (i = 0 ; i < configList.GetCount() ; i++)
+ if (functionDefByPgTrim.IsEmpty())
{
- if (configList.Item(i).BeforeFirst('=') != wxT("search_path") &&
- configList.Item(i).BeforeFirst('=') != wxT("temp_tablespaces"))
- sql += wxT("\nALTER FUNCTION ") + qtSig
- + wxT(" SET ") + configList.Item(i).BeforeFirst('=') + wxT("='") + configList.Item(i).AfterFirst('=') + wxT("';\n");
- else
- sql += wxT("\nALTER FUNCTION ") + qtSig
- + wxT(" SET ") + configList.Item(i).BeforeFirst('=') + wxT("=") + configList.Item(i).AfterFirst('=') + wxT(";\n");
+ size_t i;
+ for (i = 0 ; i < configList.GetCount() ; i++)
+ {
+ if (configList.Item(i).BeforeFirst('=') != wxT("search_path") &&
+ configList.Item(i).BeforeFirst('=') != wxT("temp_tablespaces"))
+ sql += wxT("\nALTER FUNCTION ") + qtSig
+ + wxT(" SET ") + configList.Item(i).BeforeFirst('=') + wxT("='") + configList.Item(i).AfterFirst('=') + wxT("';\n");
+ else
+ sql += wxT("\nALTER FUNCTION ") + qtSig
+ + wxT(" SET ") + configList.Item(i).BeforeFirst('=') + wxT("=") + configList.Item(i).AfterFirst('=') + wxT(";\n");
+ }
}
sql += wxT("\n")
@@ -643,7 +655,7 @@ pgFunction *pgFunctionFactory::AppendFunctions(pgObject *obj, pgSchema *schema,
cacheMap typeCache, exprCache;
pgFunction *function = 0;
- wxString argNamesCol, argDefsCol, proConfigCol, proType, seclab;
+ wxString argNamesCol, argDefsCol, proConfigCol, proType, functionDefByPgSelect, seclab;
if (obj->GetConnection()->BackendMinimumVersion(8, 0))
argNamesCol = wxT("proargnames, ");
if (obj->GetConnection()->HasFeature(FEATURE_FUNCTION_DEFAULTS) && !obj->GetConnection()->BackendMinimumVersion(8, 4))
@@ -654,6 +666,11 @@ pgFunction *pgFunctionFactory::AppendFunctions(pgObject *obj, pgSchema *schema,
proConfigCol = wxT("proconfig, ");
if (obj->GetConnection()->EdbMinimumVersion(8, 1))
proType = wxT("protype, ");
+ if (obj->GetConnection()->BackendMinimumVersion(8, 4))
+ {
+ functionDefByPgSelect = wxT(",\n")
+ wxT("pg_get_functiondef(pr.oid) AS function_def_by_pg");
+ }
if (obj->GetConnection()->BackendMinimumVersion(9, 1))
{
seclab = wxT(",\n")
@@ -664,7 +681,7 @@ pgFunction *pgFunctionFactory::AppendFunctions(pgObject *obj, pgSchema *schema,
pgSet *functions = obj->GetDatabase()->ExecuteSet(
wxT("SELECT pr.oid, pr.xmin, pr.*, format_type(TYP.oid, NULL) AS typname, typns.nspname AS typnsp, lanname, ") +
argNamesCol + argDefsCol + proConfigCol + proType +
- wxT(" pg_get_userbyid(proowner) as funcowner, description") + seclab + wxT("\n")
+ wxT(" pg_get_userbyid(proowner) as funcowner, description") + functionDefByPgSelect + seclab + wxT("\n")
wxT(" FROM pg_proc pr\n")
wxT(" JOIN pg_type typ ON typ.oid=prorettype\n")
wxT(" JOIN pg_namespace typns ON typns.oid=typ.typnamespace\n")
@@ -948,6 +965,10 @@ pgFunction *pgFunctionFactory::AppendFunctions(pgObject *obj, pgSchema *schema,
function->iSetReturnAsSet(functions->GetBool(wxT("proretset")));
function->iSetIsStrict(functions->GetBool(wxT("proisstrict")));
function->iSetSource(functions->GetVal(wxT("prosrc")));
+ if (!functionDefByPgSelect.IsEmpty())
+ {
+ function->iSetFunctionDefByPg(functions->GetVal(wxT("function_def_by_pg")));
+ }
function->iSetBin(functions->GetVal(wxT("probin")));
wxString vol = functions->GetVal(wxT("provolatile"));
--
2.6.4
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers