summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2008-11-07Update tokyocabinet to 1.3.16.obache5-31/+29
Changes: 2008-10-30 Mikio Hirabayashi * tcutil.c (tcmapdup): performance was improved. * tcutil.c (tctreenew, tctreedel, tctreeput, tctreeout, tctreeget): new functions. * tcutil.c (tcsystem): new function. * tchdb.c (tchdbopenimpl): memory usage of reader declined. * tcadb.c (tcadbsync, tcadbcopy): on-memory database is now supported. - Release: 1.3.16
2008-11-05Update to 4.010:wiz2-7/+6
2008-10-24 Patrick Galbraith <patg@patg.net> (4.010) * Fix to dbd_bind_ph() for uninitialized value 'buffer_length' thanks for bug report and patch from Askniel.com (thanks!) 2008-10-21 Patrick Galbraith <patg@patg.net> (4.009) * Fix to re-enable TAKE_IMP_DATA_VERSION. Still have to ensure DBI version 1.607 or higher * Fix to escaped single quotes throwing off bind param detection. Patch from Zhurs (zhurs@yandex.ru) Spasibo! 2008-8-15 Patrick Galbraith <patg@patg.net> (4.008) * Multi statement patch, thanks to Chris Heath! * Disabled TAKE_IMP_DATA_VERSION because segfault with DBI < 1.607 * #29528: bind_param(..., SQL_FLOAT) ignores exponents - fixed, Thanks to Tokuhiro Matsuno! * Cleanups to make mysqlEmb work under Cygwin - Thanks to Chris Rodgers <http://rodgers.org.uk/> ! * Modified and disabled tests for MySQL version < 4.1 for unsupported features 2008-5-11 Patrick Galbraith <patg@patg.net> (4.007) * Took out mysql_server_init call where not needed * Complete re-write of test suit to use Test::More - tons of cleanups! * Makefile.PL changes to use current user in 'make test' if not defined
2008-11-04Changes 8.3.5:adam5-10/+15
* Fix GiST index corruption due to marking the wrong index entry "dead" after a deletion. This would result in index searches failing to find rows they should have found. * Fix backend crash when the client encoding cannot represent a localized error message. We have addressed similar issues before, but it would still fail if the "character has no equivalent" message itself couldn't be converted. The fix is to disable localization and send the plain ASCII error message when we detect such a situation. * Fix possible crash in bytea-to-XML mapping. * Fix possible crash when deeply nested functions are invoked from a trigger. * Improve optimization of "expression" IN ("expression-list") queries. * Fix mis-expansion of rule queries when a sub-SELECT appears in a function call in FROM, a multi-row VALUES list, or a RETURNING list. * Fix Assert failure during rescan of an IS NULL search of a GiST index. * Fix memory leak during rescan of a hashed aggregation plan. * Ensure an error is reported when a newly-defined PL/pgSQL trigger function is invoked as a normal function. * Force a checkpoint before "CREATE DATABASE" starts to copy files. * Prevent possible collision of relfilenode numbers when moving a table to another tablespace with "ALTER SET TABLESPACE". * Fix incorrect text search headline generation when single query item matches first word of text. * Fix improper display of fractional seconds in interval values when using a non-ISO datestyle in an "--enable-integer-datetimes" build. * Make ILIKE compare characters case-insensitively even when they're escaped. * Ensure "DISCARD" is handled properly by statement logging. * Fix incorrect logging of last-completed-transaction time during PITR recovery. * Ensure SPI_getvalue and SPI_getbinval behave correctly when the passed tuple and tuple descriptor have different numbers of columns. * Mark SessionReplicationRole as PGDLLIMPORT so it can be used by Slony on Windows. * Fix small memory leak when using libpq's gsslib parameter. * Ensure libgssapi is linked into libpq if needed. * Fix ecpg's parsing of "CREATE ROLE". * Fix recent breakage of pg_ctl restart. * Ensure "pg_control" is opened in binary mode. * Update time zone data files to tzdata release 2008i (for DST law changes in Argentina, Brazil, Mauritius, Syria)
2008-11-04Changes 8.2.11:adam5-10/+14
* Fix GiST index corruption due to marking the wrong index entry "dead" after a deletion. This would result in index searches failing to find rows they should have found. * Fix backend crash when the client encoding cannot represent a localized error message. We have addressed similar issues before, but it would still fail if the "character has no equivalent" message itself couldn't be converted. The fix is to disable localization and send the plain ASCII error message when we detect such a situation. * Fix possible crash when deeply nested functions are invoked from a trigger. * Improve optimization of "expression" IN ("expression-list") queries. Cases in which there are query variables on the right-hand side had been handled less efficiently in 8.2.x and 8.3.x than in prior versions. The fix restores 8.1 behavior for such cases. * Fix mis-expansion of rule queries when a sub-SELECT appears in a function call in FROM, a multi-row VALUES list, or a RETURNING list. * Fix memory leak during rescan of a hashed aggregation plan. * Ensure an error is reported when a newly-defined PL/pgSQL trigger function is invoked as a normal function. * Prevent possible collision of relfilenode numbers when moving a table to another tablespace with "ALTER SET TABLESPACE". The command tried to re-use the existing filename, instead of picking one that is known unused in the destination directory. * Fix incorrect tsearch2 headline generation when single query item matches first word of text. * Fix improper display of fractional seconds in interval values when using a non-ISO datestyle in an "--enable-integer-datetimes" build. * Ensure SPI_getvalue and SPI_getbinval behave correctly when the passed tuple and tuple descriptor have different numbers of columns. * Fix ecpg's parsing of "CREATE ROLE". * Fix recent breakage of pg_ctl restart. * Ensure "pg_control" is opened in binary mode. pg_controldata and pg_resetxlog did this incorrectly, and so could fail on Windows. * Update time zone data files to tzdata release 2008i (for DST law changes in Argentina, Brazil, Mauritius, Syria)
2008-11-04Changes 8.1.15:adam5-10/+13
* Fix GiST index corruption due to marking the wrong index entry "dead" after a deletion. This would result in index searches failing to find rows they should have found. * Fix backend crash when the client encoding cannot represent a localized error message. We have addressed similar issues before, but it would still fail if the "character has no equivalent" message itself couldn't be converted. The fix is to disable localization and send the plain ASCII error message when we detect such a situation. * Fix possible crash when deeply nested functions are invoked from a trigger. * Fix mis-expansion of rule queries when a sub-SELECT appears in a function call in FROM, a multi-row VALUES list, or a RETURNING list * Ensure an error is reported when a newly-defined PL/pgSQL trigger function is invoked as a normal function. * Prevent possible collision of relfilenode numbers when moving a table to another tablespace with "ALTER SET TABLESPACE". The command tried to re-use the existing filename, instead of picking one that is known unused in the destination directory. * Fix incorrect tsearch2 headline generation when single query item matches first word of text. * Fix improper display of fractional seconds in interval values when using a non-ISO datestyle in an "--enable-integer-datetimes" build * Ensure SPI_getvalue and SPI_getbinval behave correctly when the passed tuple and tuple descriptor have different numbers of columns. * Fix ecpg's parsing of "CREATE ROLE". * Fix recent breakage of pg_ctl restart. * Update time zone data files to tzdata release 2008i (for DST law changes in Argentina, Brazil, Mauritius, Syria)
2008-11-03sortobache1-3/+3
2008-11-01Update "phpmyadmin" package to version 2.11.9.3. Changes since 2.11.9.1:tron2-6/+6
- [security] XSS in MSIE using NUL byte - [security] XSS in a Designer component
2008-10-31Update from version 0.09000 to version 0.09001seb2-9/+10
Changes: # ---------------------------------------------------------- # 0.09001 2008-08-19 # ---------------------------------------------------------- * Added support for CREATE VIEW + tests in the mysql producer (groditi) * Added support for SET fields in the mysql producer + test (groditi) * Added support for proper booleans in the mysql producer, when a mysql version of at least 4.x is supplied * Added support for proper enums under pg (as of 8.3), with pg version check, and deferrable constraints * Added support to truncate long constraint and index names in the mysql producer, because of a change to DBIx::Class to produce such long names in some cases.
2008-10-31PLIST: Don't remove share/mime/packages, handled by DEINSTALL.wiz3-5/+6
DEINSTALL: Try removing share/mime as well. Makefile: PKGREVISION++
2008-10-26Add and enable {p5,ruby}-tokyotyrant.obache1-1/+3
2008-10-26Import ruby-tokyotyrant-1.0 as databases/ruby-tokyotyrant.obache5-0/+79
This module implements the pure Ruby client which connects to the server of Tokyo Tyrant and speaks its original binary protocol. Tokyo Tyrant is a package of network interface to the DBM called Tokyo Cabinet. Though the DBM has high performance, you might bother in case that multiple processes share the same database, or remote processes access the database. Thus, Tokyo Tyrant is provided for concurrent and remote connections to Tokyo Cabinet. It is composed of the server process managing a database and its access library for client applications. The server can embed Lua, a lightweight script language so that you can define arbitrary operations of the database. The server features high concurrency due to thread-pool modeled implementation and the epoll/kqueue mechanism of the modern Linux/*BSD kernel. The server and its clients communicate with each other by simple binary protocol on TCP/IP. Protocols compatible with memcached and HTTP/1.1 are also supported so that almost all principal platforms and programming languages can use Tokyo Tyrant. High availability and high integrity are also featured due to such mechanisms as hot backup, update logging, and replication.
2008-10-26Import p5-tokyotyrant-1.2 as databases/p5-tokyotyrant.obache4-0/+51
This module implements the pure Perl client which connects to the server of Tokyo Tyrant and speaks its original binary protocol. Tokyo Tyrant is a package of network interface to the DBM called Tokyo Cabinet. Though the DBM has high performance, you might bother in case that multiple processes share the same database, or remote processes access the database. Thus, Tokyo Tyrant is provided for concurrent and remote connections to Tokyo Cabinet. It is composed of the server process managing a database and its access library for client applications. The server can embed Lua, a lightweight script language so that you can define arbitrary operations of the database. The server features high concurrency due to thread-pool modeled implementation and the epoll/kqueue mechanism of the modern Linux/*BSD kernel. The server and its clients communicate with each other by simple binary protocol on TCP/IP. Protocols compatible with memcached and HTTP/1.1 are also supported so that almost all principal platforms and programming languages can use Tokyo Tyrant. High availability and high integrity are also featured due to such mechanisms as hot backup, update logging, and replication.
2008-10-26Update tokyotyrant to 1.1.7.obache3-8/+8
Changes: 2008-10-20 Mikio Hirabayashi * ttserver.c (getcmdmask): new function. - Release: 1.1.7
2008-10-26Update ruby-tokyocabinet to 1.16.obache3-11/+11
Changes is empty...
2008-10-26Update p5-tokyocabinet to 1.18.obache2-8/+7
Changes is empty...
2008-10-26Update Tokyo Cabinet to 1.3.15.obache3-8/+8
Changes: 2008-10-20 Mikio Hirabayashi * tcutil.c (tcmapput, tcmapout, tcmapget): performance was improved. * tcutil.c (tcnumtobinstr): new function. * tchdb.c (tchdbbidx): performance was improved. - Release: 1.3.15
2008-10-25Fixes shlib names for ELF.obache1-3/+3
2008-10-23Update tokyocabinet to 1.3.14.obache3-8/+8
Changes: 2008-10-19 Mikio Hirabayashi * myconf.h: missing features of PATH_MAX and nan is now emulated. * tcutil.c (tczeromap, tczerounmap): new functions. - Release: 1.3.14
2008-10-20Update to 0.37. Headlines from NEWS:gdt2-7/+6
- 0.37 | 2008-05-24 - Configuration change: search $prefix for PostgreSQL headers/libs - Change to pg-get-connection This proc now returns #f if its arg's connection is no longer live. You should probably avoid it altogether; see following NEWS item. - Planned modesty Currently, Guile-PG exposes some accounting (implementation) details that it shouldn't. These are the "serial number" of connection and result objects, and the link between a result object the connection object where it originated. These details WILL BE REMOVED after 2008-10-01; do NOT rely on them. Practically speaking, this means `pg-get-connection' will be deleted and the external representation for the objects will drop the "N" field: until 2008-10-01: #<PG-CONN:N:...> and #<PG-RESULT:N:...> after 2008-10-01: #<PG-CONN:...> and #<PG-RESULT:...> - Tests issue SQL commands directly to CREATE and DROP the test database Previously "make check" required the commands createdb(1) and dropdb(1) (or destroydb(1) for older PostgreSQL versions) to be installed on the system. Now, the test infrastructure uses Guile-PG module (database postgres) to connect to "template1" and issues SQL commands "CREATE DATABASE" and "DROP DATABASE" directly. - New (database postgres-meta) proc: information-schema-names - New (database postgres-meta) proc: information-schema-coldefs These procs describe Guile-PG's "standard introspection" support, as specified in the PostgreSQL 7.4.19 documentation (chapter 32, "The Information Schema"). Additionally, loading the module defines type converters for `cardinal_number', `character_data' and `sql_identifier'. The `time_stamp' type converter does not seem to be used and is not provided. - New pgtable-manager (and -worker) command: #:finish This closes the (internal) connection and arranges for all future invocations of the closure to signal a "dead connection" error. - Proc `gxrepl' closes connection when done - New support for #:FOO-all combiners in `parse+make-SELECT-tree' This (database postgres-qcons) proc now supports #:union-all, #:intersect-all and #:except-all, as combiners. - Maintenance uses autoconf 2.62, automake 1.10.1, libtool 2.2.2
2008-10-19Bump the PKGREVISION for all packages which depend directly on perl,he83-98/+166
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0. The list of packages is computed by finding all packages which end up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl, or PERL5_PACKLIST defined in their make setup (tested via "make show-vars VARNAMES=...").
2008-10-19Fix an error that could occurr on some installs.adrianp2-4/+11
Previously fixed in mysql and pgsql packages - spotted by wiz@
2008-10-19Update tokyotyrant to 1.1.6.obache3-8/+8
Changes: 2008-10-14 Mikio Hirabayashi * ttutil.h (ttpackdouble, ttunpackdouble): bugs of endian normalization were fixed. - Release: 1.1.6
2008-10-19Update tokyocabinet to 1.3.13.obache3-8/+8
2008-10-19 Mikio Hirabayashi * tcutil.c (tcmdbadddouble): NAN were replaced by the nan function. * Makefile.in: the compilation command now supports Solaris. - Release: 1.3.13
2008-10-19Spell ruby-pg correctly...joerg1-2/+2
2008-10-19+ ruby-pgjoerg1-1/+2
2008-10-19Comment out LICENSE=public-domain because we aren't putting in freegdt1-2/+2
licenses yet. Noticed By smb@.
2008-10-18+ p5-Search-QueryParser-SQLjoerg1-1/+2
2008-10-17Add more transations to PLIST. Bump rev.tnn2-2/+6
2008-10-16Add the ruby-pg module, a newer replacement for ruby-postgreserh4-0/+42
2008-10-16update to 0.51drochner4-22/+18
changes: shared-mime-info 0.51 (2008-07-23) * Mime-type Changes: - Strings review shared-mime-info 0.50 (2008-07-22) * Mime-type Changes: - Better magic for a number of image types, from gdk-pixbuf - Add "extended URL format" files - Add MSI (Windows Installer) type - Add tree content types * update-mime-database Changes: - Implement tree content types, in the treemagic file shared-mime-info 0.40 (2008-06-11) * Mime-type Changes: - Add Skencil image - Add OpenOffice extension - Add Lilypond music sheets - Add MO3 compressed tracker files - Add text/x-diff alias for patches - Add text/x-c alias for C source files - Add text/rtf for RTF files - Add *.m3u8 glob for M3U files - Fix problems with Matroska audio/video detection - Fix pack200 magic - Fix detection of some message/rfc822 files - Tighten PBM/PPM/PGM magic to avoid false positives - Make "README*" glob very low - Make application/x-gnuplot a subclass of text/plain - Remove useless fnmatch matches - Remove useless gtkrc mime-type * update-mime-database Changes: - Implement glob weights - Implement reverse suffix tree - Implement icon and generic-icon support - Implement compact suffix tree
2008-10-15Updated databases/sqlite3 to 3.6.4martti2-6/+8
* Add option support for LIMIT and ORDER BY clauses on DELETE and UPDATE statements. Only works if SQLite is compiled with SQLITE_ENABLE_UPDATE_DELETE_LIMIT. * Added the sqlite3_stmt_status() interface for performance monitoring. * Add the INDEXED BY clause. * The LOCKING_STYLE extension is now enabled by default on Mac OS-X * Added the TRUNCATE option to PRAGMA journal_mode * Performance enhancements to tree balancing logic in the B-Tree layer. * Added the source code and documentation for the genfkey program for automatically generating triggers to enforce foreign key constraints. * Added the SQLITE_OMIT_TRUNCATE_OPTIMIZATION compile-time option. * The SQL language documentation is converted to use syntax diagrams instead of BNF. * Other minor bug fixes
2008-10-13Bump BUILDLINK_API_DEPENDS to p5-DBI>=1.52 as that's the minimum versionerh1-2/+2
needed by at least p5-DBD-postgresql.
2008-10-13Update tokyotyant to 1.1.5.obache5-13/+36
Pkgsrc Changes: * Added lua option and enabled by default. Changes: 2008-10-07 Mikio Hirabayashi * scrext.c (serv_codec, serv_hash, serv_sleep, serv_stat, serv_glob): new functions. - Release: 1.1.5
2008-10-13Update ruby-tokyocabinet to 1.15.obache2-6/+6
ChangeLog: empty...
2008-10-13Update p5-tokyocabinet to 1.17.obache2-6/+6
ChangeLog: empty...
2008-10-13Update tokyocabinet to 1.3.12.obache4-13/+13
Changes: 2008-10-05 Mikio Hirabayashi * tcutil.c (tchexencode, tchexdecode): new functions. * tchdb.c (tchdbaddint): a bug of error code setting was fixed. - Release: 1.3.12
2008-10-12Added p5-CatalystX-CRUD-ModelAdapter-DBIC.he1-1/+2
2008-10-12Import p5-CatalystX-CRUD-ModelAdapter-DBIC version 0.07.he3-0/+30
CatalystX::CRUD::ModelAdapter::DBIC implements the CatalystX::CRUD::ModelAdapter API for DBIx::Class.
2008-10-12Add p5-DBIx-Class-RDBOHelpers.he1-1/+2
2008-10-12Import p5-DBIx-Class-RDBOHelpers version 0.07.he3-0/+32
DBIx::Class::RDBOHelpers implements several methods with the same names as those in Rose::DBx::Object::MoreHelpers. This class helps ease compatability issues when using packages that expect these methods to exist, like Rose::HTMLx::Form::Related and CatalystX::CRUD::YUI. Most of these are convenience wrappers rather than implementing any new features.
2008-10-12Update from version 0.14 to 0.15.he2-7/+8
Pkgsrc changes: o Add dependency on p5-Rose-HTMLx-Form-Field-Serial o Canonicalize HOMEPAGE Upstream changes: 0.15 11 Sept 2008 * added 'bigint' to field-column mapping * add skip_map_class_forms boolean feature * add include_autoinc_form_fields boolean feature * add serial field type
2008-10-12Update from version 0.13 to 0.14.he2-6/+6
Upstream changes: 0.14 11 Sept 2008 * fix add_related() to forget_related() after save, so that next access reflects the addition. * move column sort disambiguation from CatalystX::CRUD::YUI::Controller to here. * support for 0.30 core api param name change * add 'int' to column types registered as 'treat_like_int' * fix query for _related methods. * update tests to support new make_sql_query() format in core API
2008-10-12Update from version 0.29 to 0.31.he2-6/+7
Pkgsrc changes: o Add dependency on newly added p5-Search-QueryParser-SQL Upstream changes: 0.31 16 Sept 2008 * add missing req to Makefile.PL * force field_names to be an ARRAY ref in Utils make_sql_query() 0.30 11 Sept 2008 * fix uninit value warning in Controller * change REST create() : Local to _rest_create() : Path('create') to make it easier for create_form() to call create() in superclass. * clean up old style $self->config->{value} to instead use $self->value in Controller * add app_class() and model_meta() accessors to ModelAdapter * in base Controller, rename view_on_single_result() method to uri_for_view_on_single_result and make accessor for the config value 'view_on_single_result' * change all reserved param names in Model::Utils to use 'cxc-' prefix instead of '_'. Backwards compat is preserved where possible. * Model::Utils make_query() will uc() sort direction * change behaviour of get_primary_key() in base Controller to not look in req->params for pk values. This allows for changing the PK as part of an update. * add new() in REST to call next::method. Works around (some) multiple inheritance issues. * check for $c->res->location before redirecting in postcommit() * Model::Utils was refactored to use Search::QueryParser::SQL. The following methods were affected: * sql_query_as_string() -- removed * params_to_sql_query() -- now returns hashref with 3 items: - query isa Search::QueryParser::SQL::Query object - query_hash (formerly query) is a simple param-name => [values] hashref - sql is the output of S::QP::S::Query->rdbo * make_sql_query() -- returned hash ref now has query_hash as plain_query value and the stringify'd Query object as plain_query_str
2008-10-12Import p5-Search-QueryParser-SQL version 0.005.he3-0/+32
Search::QueryParser::SQL is a subclass of Search::QueryParser. Chiefly it extends the unparse() method to stringify free-text search queries as valid SQL WHERE clauses. The idea is to allow you to treat your database like a free-text search index, when it really isn't.
2008-10-12Added p5-Search-QueryParser.he1-1/+2
2008-10-12Import p5-Search-QueryParser version 0.93.he3-0/+30
This module parses a query string into a data structure to be handled by external search engines. For examples of such engines, see File::Tabular and Search::Indexer. The query string can contain simple terms, "exact phrases", field names and comparison operators, '+/-' prefixes, parentheses, and boolean connectors.
2008-10-12Update from version 0.34nb1 to 0.36.he2-7/+6
Upstream changes: 0.36 30th September 2008 * Added support for $ENV->log_get_config and $ENV->log_set_config. Patch supplied by Yuval Kogman (#39651 rt.cpan.org) 0.35 22nd September 2008 * Added a combination of independent patches from Claes Jakobsson and Yuval Kogman (#38896 rt.cpan.org) to allow multi-key return from a secondard database. * Added support for sequences. Initial patch from Claes Jakobsson. * Get associate to use a transaction if one is specified. #5855 from rt.cpan.org * Finish transition of test harness to use Test::More
2008-10-12Allow perl-5.10.0 to satisfy the dependency on p5-version.dsainty1-2/+2
Don't bother bumping PKGREVISION, p5-version claims to be a NOP in the presence of built in support.
2008-10-12Update to version 0.38seb2-9/+15
Pkgsrc changes: fix dependency, this Perl module requires XML::SAX::Writer, not XML::SAX; handle IPv6 support. Changes since last packaged version (0.34): perl-ldap 0.38 -- Sun Sep 21 09:17:25 CDT 2008 ============================================== Bug Fixes * Fix bug in Net::LDAP::Extension using wrong field for resultCode * Fix Net::LDAP::Control::PasswordPolicy decoding bug. Enhancements * Net::LDAP::Extension::SetPassword now supports controls perl-ldap 0.37 -- Thu Aug 28 07:48:13 CDT 2008 ============================================== Bug Fixes * Pass correct hostname to SASL when connecting to a round-robin * Return the SASL error message when sasl client_start fails Enhancements * Add Modify Increment (RFC 4525) support * Add Content Synchronization (RFC 4453) support perl-ldap 0.36 -- Mon Apr 21 10:00:09 CDT 2008 ============================================== Bug Fixes * Fixed Net::LDAP::constant to return correct names for values 0 - 9 * Fixed DSML test to be more tolerant of whitespace Enhancements * Added controls for PreRead & PostRead perl-ldap 0.35 -- Sun Mar 30 13:35:04 CDT 2008 ============================================== Bug Fixes * Fix wrapping in Net::LDAP::LDIF * Patch from Gergely Santa to allow entries with no attributes in LDIF * Fix modr?dn to fetch values in sclar context * send packets in sizes that IO::Socket::SSL can chew * Avoid attept to use undef as hash reference in ->sync * Ensure Bind.pm presents final server response to SASL object Enhancements * Added vendorName/vendorVersion (RFC 3045) to root_dse() * add option to support IPv6 * Allow Entry->deleted to be called with a single value is well as array ref * Added Net::LDAP::Control::PasswordPolicy to support draft RFC
2008-10-12Implement builtin detection for openldap client.ahoka1-0/+15
Tested on NetBSD 4.99.72.