summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2011-02-16Added databases/postgresql90-fuzzystrmatchmanu2-2/+4
2011-02-16The fuzzystrmatch contribution provides function to match close stringsmanu4-0/+37
using various methods.
2011-02-15Changes 5.1.25:adam3-7/+10
* Fixed a leak of log file ids when a database is closed before the end of a transaction that references it. * Fixed a bug in page allocation where if a non-transactional update was being done, then we release the metadata page lock too early possibly leading to the corruption of the in-memory page list used by DB->compact. * A log write failure on a replication master will now cause a panic since the transaction may be committed on some clients. * Removed the possibility that checkpoints will overlap in the log, decreasing the time to recover. * Fixed several bugs that could cause an update running with MVCC to get the wrong version of a page or improperly update the metadata last page number. * The database open code will no longer log the open and close of the master database in a file when opening a sub database in that file. * Fixed a bug where an error during an update to a hash database with DB_NOOVERWRITE set could return DB_KEYEXIST rather than the correct error. * Fixed a bug where an updater supporting DB_READ_UNCOMMITED might downgrade its lock too soon if there was an error during the update. * Fixed a bug that could cause the wrong page number to be on a root or metadata page if DB->compact moved the page and the operation was later rolled forward. * Fixed a bug that could cause the close of a secondary index database to fail if the transaction doing the open aborted. * Changed SQL API library build on *nix to link with libpthreads when necessary. * Fixed a JDBC error where building would fail on Solaris without the flag "-D_HAVE_SQLITE_CONFIG_H". * Fixed some bugs in log_verify when there are in-memory database logs and subdb logs. * Fixed a bug that would return DB_NOTFOUND while searching for an existing item using a cursor on a non-sorted duplicate btree database. * Fixed a JDBC bug that the configure can not deal with CPPFLAGS. * Fixed a bug in the SQL API that would cause a constraint violation when updating the primary key with the same value. * Fixed a bug in the SQL BDBSQL_FILE_PER_TABLE option, to allow absolute path names.
2011-02-15Changes 8.3.14:adam19-344/+88
* Avoid failures when "EXPLAIN" tries to display a simple-form CASE expression. * Fix assignment to an array slice that is before the existing range of subscripts. * Avoid unexpected conversion overflow in planner for very distant date values. * Fix pg_restore's text output for large objects (BLOBs) when standard_conforming_strings is on. * Fix erroneous parsing of tsquery values containing ... & !(subexpression) | ... * Fix buffer overrun in "contrib/intarray"'s input function for the query_int type. * Fix bug in "contrib/seg"'s GiST picksplit algorithm.
2011-02-15Changes 8.4.7:adam22-333/+135
* Avoid failures when "EXPLAIN" tries to display a simple-form CASE expression. * Fix assignment to an array slice that is before the existing range of subscripts. * Avoid unexpected conversion overflow in planner for very distant date values. * Fix pg_restore's text output for large objects (BLOBs) when standard_conforming_strings is on. * Fix erroneous parsing of tsquery values containing ... & !(subexpression) | ... * Fix buffer overrun in "contrib/intarray"'s input function for the query_int type. * Fix bug in "contrib/seg"'s GiST picksplit algorithm.
2011-02-13Update mysql51-{client,server} package to 5.1.55.taca4-59/+89
Full changes: http://dev.mysql.com/doc/refman/5.1/en/news-5-1-55.html MySQL 5.1.55 Functionality added or changed: The time zone tables available at http://dev.mysql.com/downloads/timezones.html have been updated. These tables can be used on systems such as Windows or HP-UX that do not include zoneinfo files. (Bug#40230)
2011-02-13Update "phpmyadmin" package to version 2.11.11.3.tron2-6/+6
This version fixes the script insertion reported in CVE-2011-0987.
2011-02-11revbump(1) for devel/libevent update.tnn1-1/+2
2011-02-10Update "phpmyadmin" package to version 2.11.11.2.tron2-7/+6
This version fixes the information leak reported in PMASA-2011-1.
2011-02-10Sort.wiz1-2/+2
2011-02-10Update ipa_sdb to 1.1.obache2-6/+7
per maintainer update request by PR#44544. set LICENSE=2-clause-bsd additionaly. Changes: * Added support for ipa_db_mod and ipa_st_mod API version 2.
2011-02-09Update ruby-activerecord3 package to 3.0.4.taca3-11/+12
* More strict dependency reflect gemspec's description. *Rails 3.0.4 (unreleased)* * Added deprecation warning for has_and_belongs_to_many associations where the join table has additional attributes other than the keys. Access to these attributes is removed in 3.1. Please use has_many :through instead. [Jon Leighton] *Rails 3.0.3 (November 16, 2010)* * Support find by class like this: Post.where(:name => Post) *Rails 3.0.2 (November 15, 2010)* * Dramatic speed increase (see: http://engineering.attinteractive.com/2010/10/arel-two-point-ohhhhh-yaaaaaa/) [Aaron Patterson] * reorder is deprecated in favor of except(:order).order(...) [Santiago Pastorino] * except is now AR public API Model.order('name').except(:order).order('salary') generates: SELECT * FROM models ORDER BY salary [Santiago Pastorino] * The following code: Model.limit(10).scoping { Model.count } now generates the following SQL: SELECT COUNT(*) FROM models LIMIT 10 This may not return what you want. Instead, you may with to do something like this: Model.limit(10).scoping { Model.all.size } [Aaron Patterson]
2011-02-09Update ruby-arel package to 2.0.8.taca3-159/+127
== 2.0.8 / 2010/02/08 * Bug Fixes * Added set operation support * Fixed problems with *_any / *_all methods. == 2.0.7 (unreleased) * Bug Fixes * Limit members are visited * Fixing MSSQL TOP support == 2.0.6 12/01/2010 * Bug Fixes * Rails 3.0.x does not like that Node is Enumerable, so removing for now. == 2.0.5 11/30/2010 * Enhancements * Arel::Visitors::DepthFirst can walk your AST depth first * Arel::Nodes::Node is enumerable, depth first * Bug fixes * #lock will lock SELECT statements "FOR UPDATE" on mysql * Nodes::Node#not factory method added for creating Nodes::Not nodes * Added an As node * Deprecations * Support for Subclasses of core classes will be removed in ARel version 2.2.0 == 2.0.4 * Bug fixes * Speed improvements for Range queries. Thanks Rolf Timmermans! == 2.0.3 * Bug fixes * Fixing Oracle support * Added a visitor for "Class" objects == 2.0.2 * Bug fixes * MySQL selects from DUAL on empty FROM * Visitor translates nil to NULL * Visitor translates Bignum properly == 2.0.1 * Bug fixes == 2.0.0 / 2010-08-01 * Enhancements * Recreate library using the Visitor pattern. http://en.wikipedia.org/wiki/Visitor_pattern
2011-02-09Update ruby-activerecord package to 2.3.11.taca2-7/+7
* More strict dependency reflect gemspec's description. * It is update of version only for Ruby on Rails 2.3.11 update.
2011-02-09Changes 9.0.3:adam30-351/+178
* Before exiting walreceiver, ensure all the received WAL is fsync'd to disk * Avoid excess fsync activity in walreceiver * Make "ALTER TABLE" revalidate uniqueness and exclusion constraints when needed * Fix EvalPlanQual for "UPDATE" of an inheritance tree in which the tables are not all alike * Avoid failures when "EXPLAIN" tries to display a simple-form CASE expression * Fix assignment to an array slice that is before the existing range of subscripts * Avoid unexpected conversion overflow in planner for very distant date values * Fix PL/Python crash when an array contains null entries * Remove ecpg's fixed length limit for constants defining an array dimension * Fix erroneous parsing of tsquery values containing ... & !(subexpression) | ... * Fix buffer overrun in "contrib/intarray"'s input function for the query_int type * Fix bug in "contrib/seg"'s GiST picksplit algorithm
2011-02-08Update to phpPgAdmin 5.0.2asau3-18/+25
Changes in 5.0.2 ---------------- Some bug fixes. * Fix a css typo & error in cappuccino theme * Fix #3139003 "Autocomplete doesn't insert value", report and patch by Aleksander Machniak * Fix bad inheritance between pg83 -> pg instead of pg83 -> pg84 in the database access classes. This bug was breaking some functionnalities with 8.3 * Fix a lot of nonstandard escaped string in the database access classes Changes in 5.0.1 ---------------- Minor bug fix and update version. * Fix #3124417 "Wrong german translation", reported by schnoesel * Fix (officialy) a bug where non-super user roles cannot check ownership on objects * Add forgotten Galician language to the target "all" of lang/Makefile * Update jQuery library to current stable 1.4.4 * remove useless date from the topbar informations. This was the only place that did PHP 5.3 complain about bad timezone configuration (a non-PPA related warning). As it was a totaly useless information, we decide to remove it. Changes in 5.0 -------------- Features * Support for PostgreSQL 8.4 and 9.0 * Support for database level collation for 8.4+ * Support for schema level export * Add ability to alter schema ownership * Clean up domain support and improve interface * Add support for commenting on functions * Allow user to rename role/users and set new passwords at the same time * Greatly enhanced Full-Text-Search capabilities (ioguix, Loomis_K) * Overhauled Selenium Test suite to support multiple database versions * Optimized application graphics (Limo Driver) * Support for Column Level Privileges * Allow users to specify a template database at database creation time * Support killing processes * Add ability to create indexes concurrently * Much better support of autovacuum configuration * Add an admin page for table level * Refactored autocompletion: * fix support for cross-schema objects * support multi-field FK * support for pagination of values in the auto-complete list * Allow user to logicaly group their server under custom named node in the browser tree * New themes (Cappuccino and Gotar) and a theme switcher on the introduction page * Auto refresh Locks page * Auto refresh Processes page * Link in the bottom of the page to go to top of page * Browsing on Foreign Keys (When browsing a table, clicking on a FK value, jump to the PK row) Bugs * Fix problems with query tracking on overly long queries * Ensure pg_dump paths are valid * Fix multiple bugs about quoting and escaping database objects names with special chars * Fix multiple bugs in the browser tree * Fix multiple bugs on the SQL and script file import form * One security fix about code injection * Don't allow inserting on a table without fields * Some fix about commenting databases * removed deprecated functions from PHP 5.3 * Lot of code cleanup * Many other small minor bugs found on our way * Fix the operator property page Translations * Czech (Marek Cernocky) * Greek (Adamantios Diamantidis) * Brazillian Portuguese (Fernando Wendt) * Galician (Adri€n Chaves Fern€ndez) Incompatabilities * No longer support PHP < 5.0 * No longer support Postgres < 7.4
2011-02-08Substitutions in src/Makefile.global end up creating an incorrect path tobrook3-3/+6
ld. As a result, the installed version of this file is not useful for building PostgreSQL extensions. Instead, replace with ${LD}. See the discussion beginning with http://mail-index.netbsd.org/tech-pkg/2011/02/07/msg006685.html for more information.
2011-02-07Remove RUBY_REQD which specify older version oftaca1-2/+1
current supported version of Ruby. No functional change.
2011-02-06Revert braino.wiz5-11/+11
2011-02-06Fix path to poco.wiz5-11/+11
2011-02-06botched the include for poco when removing the wip references.schnoebe1-2/+2
2011-02-06Add databases/poco-data{,-sqlite,-odbc,-mysql}.schnoebe1-1/+5
2011-02-06Oops, drat.. Forgot to purge the wip references from the packagesschnoebe8-24/+24
before importing. wip references now all purged.
2011-02-06Import the Poco 1.4.0 ODBC database accessors.schnoebe4-0/+82
2011-02-06Import the MySQL accessors for the Poco 1.4.0 Data classes.schnoebe4-0/+74
2011-02-06Import the SQL database accessor class for Poco 1.4.0.schnoebe4-0/+65
A child of ../../databases/poco-data.
2011-02-06Import the Poco 1.4.0 database accessor parent class.schnoebe4-0/+86
2011-02-04Remove the last hunk from patch-ab for configure.obache2-12/+3
It was added for DragonFly, but not required for recent DF release, and break build on AIX-5.3, as PR#44446.
2011-02-02Handle the new files too to fix the build..tonnerre2-6/+6
2011-02-02Upgrade Apache Cassandra to version 0.7.0. It's 0.7.0-beta3 with a numbertonnerre3-14/+23
of bugfixes.
2011-02-02Changes 3.7.5:adam7-24/+34
* Added the sqlite3_vsnprintf() interface. * Added the SQLITE_DBSTATUS_LOOKASIDE_HIT, SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE, and SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL options for the sqlite3_db_status() interface. * Added the SQLITE_OMIT_AUTORESET compile-time option. * Added the SQLITE_DEFAULT_FOREIGN_KEYS compile-time option. * Updates to sqlite3_stmt_readonly() so that its result is well-defined for all prepared statements and so that it works with VACUUM. * Added the "-heap" option to the command-line shell * Fix a bug involving frequent changes in and out of WAL mode and VACUUM that could (in theory) cause database corruption. * Enhance the sqlite3_trace() mechanism so that nested SQL statements such as might be generated by virtual tables are shown but are shown in comments and without parameter expansion. This greatly improves tracing output when using the FTS3/4 and/or RTREE virtual tables. * Change the xFileControl() methods on all built-in VFSes to return SQLITE_NOTFOUND instead of SQLITE_ERROR for an unrecognized operation code. * The SQLite core invokes the SQLITE_FCNTL_SYNC_OMITTED file control to the VFS in place of a call to xSync if the database has PRAGMA synchronous set to OFF.
2011-01-29Fix build with gcc4.3markd7-1/+94
2011-01-27Use distutils.mk instead of extension.mk, so that egg file is installed.gdt2-5/+5
2011-01-27Add fixes for the security vulnerabilities reported in CVE-2010-4480 andtron7-4/+144
CVE-2010-4481 taken from the phpMyAdmin GIT repository. Thanks a lot to Tim Zingelman for pointing out that the fixes had finally been made available.
2011-01-20Dont assume libc has a strlcpy() if the heimdal libraries happen to havemarkd2-3/+16
one and expose it.
2011-01-20Changes 2.3.2:adam3-7/+70
* Fixed segfault with middleware not passing DateStyle to the client Changes 2.3.1: * Fixed build problem on CentOS 5.5 x86_64 Changes 2.3.0: psycopg 2.3 aims to expose some new features introduced in PostgreSQL 9.0. * Main new features: - `dict` to `hstore` adapter and `hstore` to `dict` typecaster, using both 9.0 and pre-9.0 syntax. - Two-phase commit protocol support as per DBAPI specification. - Support for payload in notifications received from the backed. - `namedtuple`-returning cursor. - Query execution cancel.
2011-01-18added libraries required to build on Solarisschwarz1-1/+3
2011-01-15Update ruby-odbc package to 0.99994.taca3-10/+10
Sat Jan 15 2011 version 0.99994 released * fixed column key caching, thanks Sean Noonan for bug report Fri Dec 24 2010 version 0.99993 released * fixed error reporting in Database.transaction method, thanks Shane Emmons for bug report and testing
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz19-36/+38
2011-01-10For PostgreSQL before 9.0, pg_ctl doesn't know 'init'; revert to initdb.adam2-4/+8
2011-01-05Update to 1.4.5kefren3-14/+13
Bugfixes: * rrdcached: print \n at the end of log messages when running rrdcached in the foreground -- Bernard Li * rrdcached: Let the -s, -m and -P options affect the default socket as well -- Sebastian Harl * rrdgraph: font related memory leaks fixed #208 -- tobi * rrdgraph-libdbi: print error message instead of dumping core on sql problem -- Pavel Nikiforov * rrdgraph-libdbi: properly allocated response buffer -- Pavel Nikiforov * rrdtool: in remote mode, make argument count for remote commmands strict -- Dave Peticolas * rrdgraph: fix problems with second %s in right-axis format -- tobi * and many more: for full changelog http://oss.oetiker.ch/rrdtool/pub/CHANGES Enhancements: * rrdcached: add hosts_access support added -- Shaun Reitan * rrdfetch/graph: introduce "epoch" as a new base time reference, meaning timestamp 0: you can now write epoch+11111111s or epoch+19711205s -- Peter Stamfest
2010-12-30treat DragonFly shlib handling same as NetBSD.obache2-1/+17
2010-12-25Changes 09.00.0200:adam8-306/+59
* Fix a bug about sizeof() at idx_fake_oid of info. * Return 0 for the column size when the size of numeric items are unknown. Also improve the calculation of scale of numeric items when it is not explicitly specified. * Change to use 'if' instead of an inappropriate 'else if' at cursor of convert. * Remember to set permanent flag to holdable cursors on commit with no precedent rollback (to savepoint) operations. This fixes a crash bug in case of cursor operations across transaction. * Fix a bug about the handling of the SQL_RETRIEVE_DATA option. * Fix cursor bug introduced by the previous change. * Move the setting of folder name of libpq or gssapi related dlls from .wxs file to .bat file. * Fix a bug which returns incorrect values for SQL_DATETIME_SUB.
2010-12-24Restore PG_SUBPREFIX.asau2-1263/+1264
2010-12-24Restore PG_SUBPREFIX.asau4-35/+44
2010-12-24Regenerate after PG_SUBPREFIX restoration.asau1-671/+671
2010-12-24Make PG_SUBPREFIX work: override RCD_SCRIPTS_EXAMPLEDIR to follow the setting.asau1-1/+7
2010-12-24Allow PG_SUBPREFIX configuration.asau1-2/+2
2010-12-24Restore PG_SUBPREFIX logic.asau4-677/+706