~ubuntu-branches/ubuntu/maverick/pgadmin3/maverick

« back to all changes in this revision

Viewing changes to pgadmin/include/schema/pgTable.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2009-12-17 20:34:00 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20091217203400-tlnmt4m3v7udjp0h
Tags: 1.10.1-1
* New upstream release, containing fix for:
  - default value in function parameters not shown (closes: #547940)
  - cannot open files without dot in names for restore (closes: #451038)
* Suggest postgresql-contrib (closes: #503291)
* Set myself as Maintainer and remove Raphael. Thanks for his work so far.
* Switch Uploaders and Maintainer role to better describe reality.
* Bump to Standards-Version to 3.8.3.
* Update to debhelper level 7, use dh_prep instead of dh_clean -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//////////////////////////////////////////////////////////////////////////
2
2
//
3
3
// pgAdmin III - PostgreSQL Tools
4
 
// RCS-ID:      $Id: pgTable.h 7787 2009-04-01 12:09:33Z dpage $
 
4
// RCS-ID:      $Id: pgTable.h 8064 2009-10-08 14:41:51Z dpage $
5
5
// Copyright (C) 2002 - 2009, The pgAdmin Development Team
6
6
// This software is released under the BSD Licence
7
7
//
103
103
    void iSetAppendOnly(const wxString& s) { appendOnly = s; }
104
104
    wxString GetCompressLevel() { return compressLevel; }
105
105
    void iSetCompressLevel(const wxString& s) { compressLevel = s; }
106
 
    wxString GetIsColumnStore() { return columnstore; }
107
 
    void iSetIsColumnStore(const wxString& s) { columnstore = s; }
 
106
    wxString GetOrientation() { return orientation; }
 
107
    void iSetOrientation(const wxString& s) { orientation = s; }
108
108
    wxString GetCompressType() { return compresstype; }
109
109
    void iSetCompressType(const wxString& s) { compresstype = s; };
110
110
    wxString GetBlocksize() { return blocksize; }
209
209
             autovacuum_freeze_max_age, autovacuum_freeze_table_age;
210
210
    wxString appendOnly;
211
211
    wxString compressLevel;
212
 
    wxString columnstore;
 
212
    wxString orientation;  // "row" or "column"
213
213
    wxString compresstype;
214
214
    wxString blocksize;
215
215
    wxString checksum;