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

« back to all changes in this revision

Viewing changes to pgadmin/pgscript/expressions/pgsLowerEqual.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
//////////////////////////////////////////////////////////////////////////
14
14
 
15
15
#include "pgscript/objects/pgsVariable.h"
16
16
 
17
 
pgsLowerEqual::pgsLowerEqual(const pgsExpression * left, const pgsExpression * right) :
 
17
pgsLowerEqual::pgsLowerEqual(const pgsExpression *left, const pgsExpression *right) :
18
18
        pgsOperation(left, right)
19
19
{
20
 
        
 
20
 
21
21
}
22
22
 
23
23
pgsLowerEqual::~pgsLowerEqual()
24
24
{
25
 
        
 
25
 
26
26
}
27
27
 
28
 
pgsExpression * pgsLowerEqual::clone() const
 
28
pgsExpression *pgsLowerEqual::clone() const
29
29
{
30
30
        return pnew pgsLowerEqual(*this);
31
31
}
32
32
 
33
 
pgsLowerEqual::pgsLowerEqual(const pgsLowerEqual & that) :
 
33
pgsLowerEqual::pgsLowerEqual(const pgsLowerEqual &that) :
34
34
        pgsOperation(that)
35
35
{
36
36
 
37
37
}
38
38
 
39
 
pgsLowerEqual & pgsLowerEqual::operator =(const pgsLowerEqual & that)
 
39
pgsLowerEqual &pgsLowerEqual::operator =(const pgsLowerEqual &that)
40
40
{
41
41
        if (this != &that)
42
42
        {
50
50
        return wxString() << m_left->value() << wxT(" <= ") << m_right->value();
51
51
}
52
52
 
53
 
pgsOperand pgsLowerEqual::eval(pgsVarMap & vars) const
 
53
pgsOperand pgsLowerEqual::eval(pgsVarMap &vars) const
54
54
{
55
55
        // Evaluate operands
56
56
        pgsOperand left(m_left->eval(vars));
57
57
        pgsOperand right(m_right->eval(vars));
58
 
        
 
58
 
59
59
        // Return the result
60
60
        return (*left <= *right);
61
61
}