postgres-xc 1.0.3-1 source package in Ubuntu

Changelog

postgres-xc (1.0.3-1) unstable; urgency=low


  * Imported Upstream version 1.0.3
  * Added some packaging changes from the postgresql-9.2 package.

 -- Michael Meskes <email address hidden>  Thu, 25 Apr 2013 13:29:28 +0200

Upload details

Uploaded by:
Vladimir Stavrinov
Uploaded to:
Sid
Original maintainer:
Vladimir Stavrinov
Architectures:
any all
Section:
database
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
postgres-xc_1.0.3-1.dsc 2.1 KiB d829a938068065c178315e17a58e9e342abf4d1b6bdeadabef78d338ce2573a0
postgres-xc_1.0.3.orig.tar.gz 24.1 MiB 60ae1e42e977f78785090743161867dc838e3c8e1db0ac836dcfa23c8f1db8dd
postgres-xc_1.0.3-1.debian.tar.gz 15.3 KiB e3a4d527215381370561a80db51fb2cb0e1182b82c89e5075c0414e6ff3e37c0

No changes file available.

Binary packages built by this source

ecpg-xc: Postgres-XC version of ECPG (Embedded PostgreSQL for C)

 This package contains the precompiler ECPG (Embedded
 PostgreSQL for C) for parsing Postgres-XC syntax.
 .
 Postgres-XC is a write-scalable, synchronous multi-master, transparent
 PostgreSQL cluster.
 .
 Install this package if you want to write C programs with SQL statements
 embedded in them (rather than run by an external process).

postgres-xc: write-scalable, synchronous multi-master, transparent PostgreSQL cluster

 Write-scalable means Postgres-XC can be configured with as many
 database servers as you want and handle many more writes (updating SQL
 statements) compared to what a single database server can not do.
 .
 Multi-master means you can have more than one database server that
 clients connect to which provide a single, consistent cluster-wide view
 of the database.
 .
 Synchronous means any database update from any database server is
 immediately visible to any other transactions running on different
 masters.
 .
 Transparent means you (and your applications) do not have to worry
 about how your data is stored in more than one database servers
 internally.
 .
 You can configure Postgres-XC to run on multiple servers. Your data is
 stored in a distributed way, that is, partitioned or replicated, as
 chosen by you for each table. When you issue queries, Postgres-XC
 determines where the target data is stored and issues corresponding
 queries to servers containing the target data.

postgres-xc-client: front-end programs for Postgres-XC

 This package contains client and administrative programs for
 Postgres-XC: these are the interactive terminal client psql and
 programs for creating and removing users and databases.
 .
 This is the client package for Postgres-XC. If you install
 Postgres-XC on a standalone machine, you need the server package
 postgres-xc, too. On a network, you can install this package on
 many client machines, while the server package may be installed on
 only one machine.
 .
 Postgres-XC is a write-scalable, synchronous multi-master, transparent
 PostgreSQL cluster.

postgres-xc-contrib: additional facilities for Postgres-XC

 The Postgres-XC contrib package provides several additional features
 for the Postgres-XC database. contrib often serves as a testbed for
 features before they are adopted into PostgreSQL proper:
 .
  adminpack - File and log manipulation routines, used by pgAdmin
  btree_gist - B-Tree indexing using GiST (Generalised Search Tree)
  chkpass - An auto-encrypted password datatype
  cube - Multidimensional-cube datatype (GiST indexing example)
  dblink - Functions to return results from a remote database
  earthdistance - Operator for computing the distance (in miles) between
                   two points on the earth's surface
  fuzzystrmatch - Levenshtein, metaphone, and soundex fuzzy string matching
  hstore - Store (key, value) pairs
  intagg - Integer aggregator/enumerator
  _int - Index support for arrays of int4, using GiST (benchmark
                   needs the libdbd-pg-perl package)
  isn - type extensions for ISBN, ISSN, ISMN, EAN13 product numbers
  lo - Large Object maintenance
  ltree - Tree-like data structures
  oid2name - Maps OIDs to table names
  pageinspect - Inspection of database pages
  passwordcheck - Simple password strength checker
  pg_buffercache - Real time queries on the shared buffer cache
  pg_freespacemap- Displays the contents of the free space map (FSM)
  pg_trgm - Determine the similarity of text based on trigram matching
  pg_standby - Create a warm stand-by server
  pgbench - TPC-B like benchmark
  pgcrypto - Cryptographic functions
  pgrowlocks - A function to return row locking information
  pgstattuple - Returns the percentage of dead tuples in a table; this
                   indicates whether a vacuum is required.
  seg - Confidence-interval datatype (GiST indexing example)
  spi - PostgreSQL Server Programming Interface; 4 examples of
                   its use:
                   autoinc - A function for implementing AUTOINCREMENT/
                                IDENTITY
                   insert_username - function for inserting user names
                   moddatetime - Update modification timestamps
                   refint - Functions for implementing referential
                                integrity (foreign keys). Note that this is
                                now superseded by built-in referential
                                integrity.
                   timetravel - Re-implements in user code the time travel
                                feature that was removed in 6.3.
  tablefunc - examples of functions returning tables
  uuid-ossp - UUID generation functions
  vacuumlo - Remove orphaned large objects
 .
 Postgres-XC is a write-scalable, synchronous multi-master, transparent
 PostgreSQL cluster.

postgres-xc-dbg: debug symbols for postgres-xc

 Write-scalable means Postgres-XC can be configured with as many
 database servers as you want and handle many more writes (updating SQL
 statements) compared to what a single database server can not do.
 .
 Multi-master means you can have more than one database server that
 clients connect to which provide a single, consistent cluster-wide view
 of the database.
 .
 Synchronous means any database update from any database server is
 immediately visible to any other transactions running on different
 masters.
 .
 Transparent means you (and your applications) do not have to worry
 about how your data is stored in more than one database servers
 internally.
 .
 You can configure Postgres-XC to run on multiple servers. Your data is
 stored in a distributed way, that is, partitioned or replicated, as
 chosen by you for each table. When you issue queries, Postgres-XC
 determines where the target data is stored and issues corresponding
 queries to servers containing the target data.
 .
 This package provides detached debugging symbols for Postgres-XC.

postgres-xc-doc: No summary available for postgres-xc-doc in ubuntu saucy.

No description available for postgres-xc-doc in ubuntu saucy.

postgres-xc-plperl: PL/Perl procedural language for Postgres-XC

 PL/Perl enables an SQL developer to write procedural language functions
 for Postgres-XC in Perl. You need this package if you have any
 Postgres-XC functions that use the languages plperl or plperlu.
 .
 Postgres-XC is a write-scalable, synchronous multi-master, transparent
 PostgreSQL cluster.

postgres-xc-plpython: No summary available for postgres-xc-plpython in ubuntu saucy.

No description available for postgres-xc-plpython in ubuntu saucy.

postgres-xc-pltcl: No summary available for postgres-xc-pltcl in ubuntu saucy.

No description available for postgres-xc-pltcl in ubuntu saucy.

postgres-xc-server-dev: development files for Postgres-XC server-side programming

 Header files for compiling SSI code to link into Postgres-XC's backend; for
 example, for C functions to be called from SQL.
 .
 This package also contains the Makefiles necessary for building add-on
 modules of Postgres-XC, which would otherwise have to be built in the
 Postgres-XC source-code tree.
 .
 Postgres-XC is a write-scalable, synchronous multi-master, transparent
 PostgreSQL cluster.