~ubuntu-branches/ubuntu/utopic/pgadmin3/utopic-proposed

« back to all changes in this revision

Viewing changes to pgadmin/pgscript/expressions/pgsTrim.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2011-06-07 23:03:54 UTC
  • mfrom: (1.3.1 upstream) (13 sid)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20110607230354-3td4j9y71u4ahcvj
Tags: 1.14.0~beta1-1
* New upstream development release, adding Build-Depends on
  postgresql-server-dev-all >= 117~.
* Add Build-Depends on quilt, (un)patch to debian/rules and patch for fixing
  the include for kwlist.h in pgadmin/db/keywords.c.
* Add pg_config --includedir-server output to CPPFLAGS.
* Remove unrecognized configure options: --with-wx-config,
  --with-pgsql-include, --enable-gtk2, --enable-unicode.
* Clean up manually the files that are left behind after the broken
  distclean.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//////////////////////////////////////////////////////////////////////////
2
2
//
3
3
// pgScript - PostgreSQL Tools
4
 
// 
5
 
// Copyright (C) 2002 - 2010, The pgAdmin Development Team
 
4
//
 
5
// Copyright (C) 2002 - 2011, The pgAdmin Development Team
6
6
// This software is released under the PostgreSQL Licence
7
7
//
8
8
//////////////////////////////////////////////////////////////////////////
13
13
 
14
14
#include "pgscript/objects/pgsString.h"
15
15
 
16
 
pgsTrim::pgsTrim(const pgsExpression * exp) :
 
16
pgsTrim::pgsTrim(const pgsExpression *exp) :
17
17
        pgsExpression(), m_exp(exp)
18
18
{
19
19
 
24
24
        pdelete(m_exp);
25
25
}
26
26
 
27
 
pgsTrim::pgsTrim(const pgsTrim & that) :
 
27
pgsTrim::pgsTrim(const pgsTrim &that) :
28
28
        pgsExpression(that)
29
29
{
30
30
        m_exp = that.m_exp->clone();
31
31
}
32
32
 
33
 
pgsTrim & pgsTrim::operator=(const pgsTrim & that)
 
33
pgsTrim &pgsTrim::operator=(const pgsTrim &that)
34
34
{
35
35
        if (this != &that)
36
36
        {
41
41
        return (*this);
42
42
}
43
43
 
44
 
pgsExpression * pgsTrim::clone() const
 
44
pgsExpression *pgsTrim::clone() const
45
45
{
46
46
        return pnew pgsTrim(*this);
47
47
}
51
51
        return wxString() << wxT("TRIM(") << m_exp->value() << wxT(")");
52
52
}
53
53
 
54
 
pgsOperand pgsTrim::eval(pgsVarMap & vars) const
 
54
pgsOperand pgsTrim::eval(pgsVarMap &vars) const
55
55
{
56
56
        return pnew pgsString(m_exp->eval(vars)->value().Strip(wxString::both));
57
57
}