Commit graph

3051 commits

Author SHA1 Message Date
manu
27ececf503 Fiw a configure option name: it's --enable-spasswd ans not --with-spasswwd
details here:
http://www.openldap.org/lists/openldap-software/200702/msg00126.html
2007-03-15 14:28:57 +00:00
tron
698420c064 Fix build problem under NetBSD (-i386 3.1). 2007-03-12 12:33:12 +00:00
adam
e7547647b6 Changes 5.0.37:
* Added the SHOW PROFILES and SHOW PROFILE statements to display statement
  profile data, and the accompanying INFORMATION_SCHEMA.PROFILING table.

* Added the Uptime_since_flush_status status variable, which indicates the
  number of seconds since the most recent FLUSH STATUS statement.

* Incompatible change in DATE_FORMAT().

* NDB Cluster: The LockPagesInMainMemory configuration parameter has changed
  its type and possible values.

* The bundled yaSSL library was upgraded to version 1.5.8.

* The --skip-thread-priority option now is enabled by default for binary Mac
  OS X distributions. Use of thread priorities degrades performance on Mac OS X.

* Added the --disable-grant-options option to configure.

* Bug fixes.
2007-03-11 18:42:27 +00:00
grant
2f0986858b update to 1.54.
changes since 1.50:

Changes in DBI 1.54 (svn rev 9157),  23rd February 2007

  Fixed type_info when called for multiple dbh thanks to Cosimo Streppone.
  Fixed compile warnings in bleadperl on freebsd-6.1-release
    and solaris 10g thanks to Philip M. Gollucci.
  Fixed to compile for perl built with -DNO_MATHOMS thanks to Jerry D. Hedden.
  Fixed to work for bleadperl (r29544) thanks to Nicholas Clark.
    Users of Perl >= 5.9.5 will require DBI >= 1.54.
  Fixed rare error when profiling access to $DBI::err etc tied variables.
  Fixed DBI::ProfileDumper to not be affected by changes to $/ and $,
    thanks to Michael Schwern.

  Changed t/40profile.t to skip tests for perl < 5.8.0.
  Changed setting trace file to no longer write "Trace file set" to new file.
  Changed 'handle cleared whilst still active' warning for dbh
    to only be given for dbh that have active sth or are not AutoCommit.
  Changed take_imp_data to call finish on all Active child sth.
  Changed DBI::PurePerl trace() method to be more consistent.
  Changed set_err method to effectively not append to errstr if the new errstr
    is the same as the current one.
  Changed handle factory methods, like connect, prepare, and table_info,
    to copy any error/warn/info state of the handle being returned
    up into the handle the method was called on.
  Changed row buffer handling to not alter NUM_OF_FIELDS if it's
    inconsistent with number of elements in row buffer array.
  Updated DBI::DBD docs re handling multiple result sets.
  Updated DBI::DBD docs for driver authors thanks to Ammon Riley
    and Dean Arnold.
  Updated column_info docs to note that if a table doesn't exist
    you get an sth for an empty result set and not an error.

  Added new DBD::Gofer 'stateless proxy' driver and framework,
    and the DBI test suite is now also executed via DBD::Gofer,
    and DBD::Gofer+DBI::PurePerl, in addition to DBI::PurePerl.
  Added ability for trace() to support filehandle argument,
    including tracing into a string, thanks to Dean Arnold.
  Added ability for drivers to implement func() method
    so proxy drivers can proxy the func method itself.
  Added SQL_BIGINT type code (resolved to the ODBC/JDBC value (-5))
  Added $h->private_attribute_info method.

Changes in DBI 1.53 (svn rev 7995),   31st October 2006

  Fixed checks for weaken to work with early 5.8.x versions
  Fixed DBD::Proxy handling of some methods, including commit and rollback.
  Fixed t/40profile.t to be more insensitive to long double precision.
  Fixed t/40profile.t to be insensitive to small negative shifts in time
    thanks to Jamie McCarthy.
  Fixed t/40profile.t to skip tests for perl < 5.8.0.
  Fixed to work with current 'bleadperl' (~5.9.5) thanks to Steve Peters.
    Users of Perl >= 5.9.5 will require DBI >= 1.53.
  Fixed to be more robust against drivers not handling multiple result
    sets properly, thanks to Gisle Aas.

  Added array context support to execute_array and execute_for_fetch
    methods which returns executed tuples and rows affected.
  Added Tie::Cache::LRU example to docs thanks to Brandon Black.

Changes in DBI 1.52 (svn rev 6840),   30th July 2006

  Fixed memory leak (per handle) thanks to Nicholas Clark and Ephraim Dan.
  Fixed memory leak (16 bytes per sth) thanks to Doru Theodor Petrescu.
  Fixed execute_for_fetch/execute_array to RaiseError thanks to Martin J. Evans.
  Fixed for perl 5.9.4. Users of Perl >= 5.9.4 will require DBI >= 1.52.

  Updated DBD::File to 0.35 to match the latest release on CPAN.

  Added $dbh->statistics_info specification thanks to Brandon Black.

  Many changes and additions to profiling:
    Profile Path can now uses sane strings instead of obscure numbers,
    can refer to attributes, assorted magical values, and even code refs!
    Parsing of non-numeric DBI_PROFILE env var values has changed.
    Changed DBI::Profile docs extensively - many new features.
    See DBI::Profile docs for more information.

Changes in DBI 1.51 (svn rev 6475),   6th June 2006

  Fixed $dbh->clone method 'signature' thanks to Jeffrey Klein.
  Fixed default ping() method to return false if !$dbh->{Active}.
  Fixed t/40profile.t to be insensitive to long double precision.
  Fixed for perl 5.8.0's more limited weaken() function.
  Fixed DBD::Proxy to not alter $@ in disconnect or AUTOLOADd methods.
  Fixed bind_columns() to use return set_err(...) instead of die()
    to report incorrect number of parameters, thanks to Ben Thul.
  Fixed bind_col() to ignore undef as bind location, thanks to David Wheeler.
  Fixed for perl 5.9.x for non-threaded builds thanks to Nicholas Clark.
    Users of Perl >= 5.9.x will require DBI >= 1.51.
  Fixed fetching of rows as hash refs to preserve utf8 on field names
    from $sth->{NAME} thanks to Alexey Gaidukov.
  Fixed build on Win32 (dbd_postamble) thanks to David Golden.

  Improved performance for thread-enabled perls thanks to Gisle Aas.
  Drivers can now use PERL_NO_GET_CONTEXT thanks to Gisle Aas.
    Driver authors please read the notes in the DBI::DBD docs.
  Changed DBI::Profile format to always include a percentage,
    if not exiting then uses time between the first and last DBI call.
  Changed DBI::ProfileData to be more forgiving of systems with
    unstable clocks (where time may go backwards occasionally).
  Clarified the 'Subclassing the DBI' docs.
  Assorted minor changes to docs from comments on annocpan.org.
  Changed Makefile.PL to avoid incompatible options for old gcc.

  Added 'fetch array of hash refs' example to selectall_arrayref
    docs thanks to Tom Schindl.
  Added docs for $sth->{ParamArrays} thanks to Martin J. Evans.
  Added reference to $DBI::neat_maxlen in TRACING section of docs.
  Added ability for DBI::Profile Path to include attributes
    and a summary of where the code was called from.
2007-03-11 16:52:12 +00:00
grant
9a442abced +php-oracle 2007-03-11 16:46:59 +00:00
grant
44833e850d Initial import of php-oracle.
This PHP module provides access to Oracle databases.
2007-03-11 16:46:17 +00:00
wiz
32601b3577 Update to 1.47:
1.47 Sun Mar 4 03:30:00 UTC 2007

* Do the search in unions only when we must do them, not on every
  call to the Next method
* Don't index ex/ dir to avoid complains by the indexer of PAUSE/CPAN

1.46 Sun Feb 25 19:04:00 UTC 2007

* when doing a union, we need to actually search, rather than just
  doing a count
* add support for testing with Oracle backend
* Use CROSS JOIN instead of ',' as SQL parsers in Pg and some mysql
  are buggy and cannot parse "FROM X, Y JOIN Z ON Z.f = X.f"
* deprecate DEBUG method, it's still there but produce warning
* fix CleanSlate method that was missing several keys
* fix a long standing bug we had, we didn't write depends_on data about
  a join, so we could build queries with incorrect parens around join
  conditions
* fix default values for ALIAS1 argument in the Join method, istead of
  defaulting FIELD1 to 'main' value
* fix a TODO test
* internal refactoring of a storage for query's conditions,
  instead of building query strings right after the limit
  or join, we now build a perl structure
* don't clone attributes that don't exists in the Clone method
* we use Encode module without perl version check for a long time, so
  we can get rid of all checks for the version and load the module
  at compile time everywhere we need it
* implement MayBeNull method in the handler that checks if applied
  conditions allow NULLs in the result set
* implement cascaded LEFT JOINs optimization
* additional tests for CleanSlate and Clone methods, ENTRY_AGGREGATOR
  argument, different types of joins and LEFT JOIN optimizer
2007-03-10 15:02:53 +00:00
drochner
c9a446deba update to 3.3.13
changes:
-bugfixes
-enhanced PRAGMA integrity_check
2007-03-07 12:17:58 +00:00
martti
82a6c58e99 Updated databases/rrdtool to 1.2.19
* bindings/python/Makefile.am: libtool builds shared libraries
  anyway, no need for extra LDFLAGS that bite non GNU ld versions

* src/rrd_tool.c: resolve snprintf overflow warning by using sizeof
2007-03-06 10:49:00 +00:00
obache
5d8b26d21e Update qdbm and sub packages to 1.8.75.
Changes:
2006-11-10  Mikio Hirabayashi

	- The utility API was enhanced.
	- A bug related to B+ tree API for Ruby was fixed.
	- Release: 1.8.75
2007-03-05 15:56:26 +00:00
grant
a156ec5cb4 make this actually work (on Solaris, at least) by forcing -lclntsh.
something weird is going on in the pkgsrc perl build process which is
trashing required arguments...
2007-03-04 01:17:51 +00:00
grant
02dcf96623 update DBD::Oracle to 1.19.
Changes in DBD-Oracle 1.19 (svn rev 8002) 3rd November 2006

  Fixed execute_array to comply with DBI standard from Martin J. Evans, Xho Jingleheimerschmidt and others
  Fixed execute_array so it will not throw a Perl warning on undef values in Tuples from John Scoles
  Fixed execute_array so it will take the ora_array_chunk_size DB handle attribute
  Fixed a few other little bugs dealing with  compatibility with Oracle 8
  Added support for array context aware execute_for_fetch from Martin J. Evans

Changes in DBD-Oracle 1.18 (svn rev 6697)

  Added support for native Oracle Array interface thanks Kristian Nielsen
  Added suppot for LOB Locators from Jeffrey Klein.

Changes in DBD-Oracle 1.17 (svn rev 3726)

  Added expanded support for Lobs from Jeffrey Klein
  Fixed automatic csform setting for some UTF8 cases and for Oracle 8.0
  Fixed truncation error on fetch into UTF8 charset thanks to Honza Pazdziora.
  Fixed INTERVAL DAY TO SECOND thanks to Honza Pazdziora.
  Fixed unicode tests for cygwin thanks to Andy Hassall.
  Fixed undef warnings when connecting with undef $user.
  Fixed undef warnings from $dbh->get_info(18);
  Fixed LOB streaming example thanks to Pablo Zorzoli.

  Added support for nested cursors in select lists thanks to Charles Jardine.
  Added "Trailing Spaces" section to docs thanks to Michael A Chase.
  Added support for binary floats/doubles thanks to Dennis Box.
  Added INSTANCE_NAME, SERVER and SERVICE_NAME as valid connect keywords
    in the 'dbi:Oracle:x=y' short form of connecting without tnsnames.ora.
    For example 'dbi:Oracle:host=localhost;service_name=xe;server=dedicated'
  Added auto-detection of ORACLE_HOME in some configurations.

Changes in DBD-Oracle 1.16 (svn rev 515)   22nd October 2004

  NOTE:
  This release has major changes to Unicode support. See below.
  It no longer supports the old Oracle 7 OCI interface.
  It requires DBI >= 1.38 for some of the tests if using Perl 5.6.
  It no longer supports Perl 5.5 or earlier.

  Fixed placeholder names to be case insensitive thanks to Charles Jardine.
  Fixed some LOB test problems with Oracle 8.1.7 by implementing ora_lob_append
    with OCILobGetLength() and OCILobWrite(), instead of buggy OCILobWriteAppend(),
    if the Oracle client version is < 9.0. Thanks to Jeff Urlwin.
  Fixed handling of temporary LOBs thanks to Chris Donnelly.
  Fixed memory leaks in auto LOB refetch code thanks to Dongqiang Bai.
  Fixed reporting of length truncated in error message thanks to Jeff Urlwin.
  Fixed column_info() to handle TIMESTAMP and INTERVAL datatypes
    for Oracle >= 8 thanks to Stephen Clouse.
  Fixed STORE to cache attribute value in handle cache.
  Fixed seg fault returning LOB Locators reported by Raj Chandran.
  Fixed binding to allow overloaded scalars (not for 'inout' params).
  Fixed setting of $DBI::err to 0 triggering PrintWarn in DBI >= 1.41.
  Fixed some edge cases in row cache sizing.
  Fixed truncation error fetching very small numbers (1 ^ -130).
  Fixed Oraperl to not enable PrintError or AutoCommit (broken since 1.13).

  Changed some utf8 internals for LOBs.
  Changed ORA_OCI constant from being just 7 or 8 to being a dualvar:
    in numeric context returns the major.minor version number (8.1, 9.2 etc)
    in string context it returns the full "major.minor.foo.bar" version string.
  Changed some SUCCESS_WITH_INFO situtions to be treated as a "warning"
    by setting $DBI::err to "0" (and so trigger PrintWarn in DBI >= 1.43)
    eg "ORA-28011: the account will expire soon; change your password now"
    and package compilation errors.

  Added automatic support for UTF-8 for both NLS_LANG and NLS_NCHAR
    Many thanks to Lincoln Baxter who did most of the hard work and testing
    and to Jeff Urlwin and others who also helped out.
    Perl 5.8.x and Oracle 9+ are highly recommended if you want to use Unicode.
    See POD for more information and documentation.
  Added support for "... RETURNING lob_locator_column INTO ?"
    using $sth->bind_param_inout(2, \$loc, 0, {ora_type => ORA_BLOB});
  Added bind_param() ora_csform, ora_csid, and ora_maxdata_size attributes.
  Added bind_param() support for SQL_BLOB & SQL_CLOB thanks to Stephen Clouse.
  Added $dbh->ora_can_unicode and $dbh->ora_nls_parameters thanks to Andy Hassall.

Changes in DBD-Oracle 1.15   27th January 2004

  NOTE: DBD::Oracle now requires DBI version 1.28 (June 2002) or later.

  NOTE: This is probably the last release that will support being
  built with the old Oracle 7 OCI interface.

  Fixed for extproc_perl (http://search.cpan.org/author/JHORWITZ/extproc_perl/)
  Fixed Oraperl handling of ora_errno and ora_errstr thanks to Martin Busik.
  Fixed PRECISION for "NUMBER" to be 126 not 0 thanks to Steffen Goeldner.
  Fixed bind_param_inout() for placeholders not assigned to in PL/SQL.

  Changed bind_param_inout for CHAR types to no longer use a minimum
    length of 28 characters. Warning: this change may break code that
    doesn't pass bind_param_inout() a length value large enough for the
    returned string. (The minimum length was not documented and should
    not have been relied upon. This change currently only applies to the
    CHAR type but may extended to all string types in a later release.)
  Changed type_info_all() to return the same type info as Oracle's own
    ODBC driver does, thanks to Andy Hassall for the data.
    The types include LOBs but not the new TIMESTAMP and INTERVAL types.

  Added direct access to LOB Locators and major LOB Locator functions
    such as $sth->ora_lob_read(...), $sth->ora_lob_write(...) etc.
    This work was sponsored by Geospiza Inc.
  Added LOB Locator example docs thanks to Mark Dilger at Geospiza.
  Added TIMESTAMP [WITH [LOCAL] TIME ZONE]] support
    thanks to Stephen Clouse and Robert Wyrick.
  Added INTERVAL YEAR TO MONTH, INTERVAL DAY TO SECOND support.
  Added /*+RULE*/ hint to metadata method SQL thanks to Andy Hassall.
  Added connect example using OS authentication thanks to Bob Thomson.
  Added prepare("...", { ora_placeholders => 0 }) to disable placeholders.
  Added docs for returning a recordset (table/array) using Oracle >=9.0.1
    via "FUNCTION foo RETURN type PIPELINED" thanks to Steve Baldwin.
  Added docs on ora_check_sql=>0 in prepare() to avoid server-side parses.
  Added support for sharing database connections with ProC/SQLLIB code
    via ora_use_proc_connection attribute, thanks to Kristian Nielsen
    needs build time option thanks to Steffen Goeldner
  Added (restored) the error "possibly near <*> indicator" marker for
    syntax errors thanks to Jason Hitt and Andy Hassall.
  Added $dbh->{ora_parse_error_offset} attribute thanks to Andy Hassall.
  Added auto setting of $dbh->{Username} if not given to connect
    i.e. using Oracle OS authentication and connecting as "/"
    by selecting SYS_CONTEXT('userenv','session_user') from the db
    thanks to Eric Lenio and Andy Hassall.
2007-03-04 01:04:11 +00:00
wiz
f728ee28e7 Reset maintainer on his request (PR 35869). 2007-02-28 15:49:54 +00:00
wiz
51c8ea8d62 pkglint USE_LANGUAGES cleanup. Patch from Sergey Svishchev. 2007-02-22 19:30:02 +00:00
wiz
601583c320 Whitespace cleanup, courtesy of pkglint.
Patch provided by Sergey Svishchev in private mail.
2007-02-22 19:26:05 +00:00
wiz
5411305ed8 Use standard CPAN homepage. 2007-02-22 19:18:13 +00:00
wiz
6e2c35c083 pkglint cleanup; update HOMEPAGE/MASTER_SITES.
From Sergey Svishchev in private mail.
2007-02-22 19:01:13 +00:00
dsainty
de59e40e96 Install some documentation under PREFIX/share/doc/PKGBASE 2007-02-19 21:57:51 +00:00
dsainty
a1b1797de6 + palm-db-tools 2007-02-19 21:21:15 +00:00
dsainty
b184ad38ab PalmOS Flat-File Database Tools. Conversion utilities for the PalmOS
flat-file database programs "MobileDB", "JFile" v3.x, "List", and the open
source "DB".
2007-02-19 21:19:14 +00:00
minskim
8e63842cf9 Update ruby-activerecord to 1.15.2.
Changes:
* Pass a range in :conditions to use the SQL BETWEEN operator. #6974
  [dcmanges] Student.find(:all, :conditions => { :grade => 9..12 })
* Don't create instance writer methods for class attributes. [Rick]
* When dealing with SQLite3, use the table_info pragma helper, so that the
  bindings can do some translation for when sqlite3 breaks incompatibly
  between point releases. [Jamis Buck]
* SQLServer: don't choke on strings containing 'null'.  #7083 [Jakob S]
* Consistently use LOWER() for uniqueness validations (rather than mixing with
  UPPER()) so the database can always use a functional index on the lowercased
  column. #6495 [Si]
* MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last
  inserted id. #6778 [Jonathan Viney, timc]
* Fixtures use the table name and connection from set_fixture_class. #7330
  [Anthony Eden]
* SQLServer: quote table name in indexes query.  #2928 [keithm@infused.org]
2007-02-18 23:12:52 +00:00
wiz
ac504a2acc Update to 1.45:
1.45 Tue Sep 26 11:08:20 EDT 2006

* Postgres fixes:
** fix "$rec->Create();"
** fix "$rec->Create( IntegerColumn => '' );"
** fix "$rec->SetIntegerColumn( '' );"
** add test

* Cache changes
** cleanup ::Record::Cachable
** use cache in:
    $a->LoadByCols(...);
    $b->LoadById( $a->id );
** add cache tests

1.44
* DBIx::SearchBuilder::Handle::DatabaseVersion enhancements
2007-02-18 02:35:03 +00:00
wiz
898d4355b2 Update to 1.05:
1.05 11/3/2006
  - MP2/AuthDBI: Add missing Apache2::Access
    Submitted by: Adam Prime x443

1.04 10/23/2006
  - MP1: Undefined subroutine &Apache2::Const::OK called at ....
    (The rest of them) d'oh!

  Seconded by: Kjetil Kjernsmo
  Submitted by: BOWMANBS

1.03 08/21/2006

  - MP1: Undefined subroutine &Apache2::Const::OK called at
    Apache/AuthDBI.pm line 906.
    Submitted by: [Philip.Garrett@manheim.com]
    Reviewed by: Kevin A. McGrail (ThoughtWorthy Media, Inc.)

  - http://rt.cpan.org/Ticket/Display.html?id=20809
    avoid a warnings caused by debug statements
    Reported by: Vladimir S. Tikhonjuk

1.02 08/02/2006

  - http://rt.cpan.org/Ticket/Display.html?id=20808
    s/denug/debug/ typo in Apache::AuthDBI
    Submitted by: Vladimir S. Tikhonjuk
2007-02-18 01:59:36 +00:00
abs
79a92f0ff1 checkin distinfo missed in previous (some time ago) commit 2007-02-16 22:29:40 +00:00
rillig
5ae015bd36 On NetBSD, building with jdk 1.1.8 results in a segmentation fault, so
use a newer JDK here.
2007-02-16 10:51:25 +00:00
rillig
bd41b2a559 Made the code a bit shorter. 2007-02-15 15:45:07 +00:00
rillig
2860919c60 Fixed the deprecated share/doc/html. PKGREVISION++ 2007-02-15 15:36:04 +00:00
drochner
d3f76b4e09 update to 1.0-beta1
changes: "lots of new features", too much to list here
2007-02-08 20:17:53 +00:00
adam
2c18f3a641 Changes 8.0.12:
* Remove overly-restrictive check for type length in constraints and
  functional indexes
2007-02-08 20:00:57 +00:00
adam
7663b98733 Changes 8.1.8:
* Remove overly-restrictive check for type length in constraints and
  functional indexes
2007-02-08 20:00:46 +00:00
adam
038538cdd2 Changes 8.2.3:
* Remove overly-restrictive check for type length in constraints and
  functional indexes
* Fix optimization so MIN/MAX in subqueries can again use indexes
2007-02-08 20:00:27 +00:00
rillig
a171b6cef7 + p5-DBD-PgPP 2007-02-07 21:38:53 +00:00
rillig
def53c8313 Imported p5-DBD-PgPP.
DBD::PgPP is a Pure Perl client interface for the PostgreSQL database.
This module implements network protocol between server and client of
PostgreSQL, thus you don't need external PostgreSQL client library like
libpq for this module to work. It means this module enables
you to connect to PostgreSQL server from some operation systems
which PostgreSQL is not ported. How nifty!

Packaged by Francisco Valladolid Hdez.
2007-02-07 21:37:27 +00:00
joerg
d758aa25c9 Needs intltool. 2007-02-06 17:24:42 +00:00
rillig
3576e96e15 + p5-Net-MySQL 2007-02-05 23:10:34 +00:00
rillig
676799cbe1 Imported p5-Net-MySQL.
Net::MySQL is a Pure Perl client interface for the MySQL database.
This module implements network protocol between server and client
of MySQL, thus you don't need external MySQL client library like
libmysqlclient for this module to work. It means this module enables
you to connect to MySQL server from some operation systems which
MySQL is not ported.
How nifty!

Since this module's final goal is to completely replace DBD::mysql,
API is made similar to that of DBI.
From perl you activate the interface with the statement

Packaged by Francisco Valladolid Hdez.
2007-02-05 23:08:02 +00:00
adam
77d481832b Changes 8.0.11:
* Remove security vulnerabilities that allowed connected users to
  read backend memory
* Fix rare bug wherein btree index page splits could fail due to
  choosing an infeasible split point
* Fix for rare Assert() crash triggered by UNION
* Tighten security of multi-byte character processing for UTF8
  sequences over three bytes long
2007-02-05 11:58:42 +00:00
adam
e677558b09 Changes 8.1.7:
* Remove security vulnerabilities that allowed connected users to
  read backend memory
* Fix rare bug wherein btree index page splits could fail due to
  choosing an infeasible split point
* Improve "VACUUM" performance for databases with many tables
* Fix autovacuum to avoid leaving non-permanent transaction IDs in
  non-connectable databases
  This bug affects the 8.1 branch only.
* Fix for rare Assert() crash triggered by UNION
* Tighten security of multi-byte character processing for UTF8
  sequences over three bytes long
* Fix bogus "permission denied" failures occurring on Windows due to
  attempts to fsync already-deleted files
* Fix possible crashes when an already-in-use PL/pgSQL function is
  updated
2007-02-05 11:42:07 +00:00
adam
48a36d84cb Changes 8.2.2:
* Remove security vulnerabilities that allowed connected users to
  read backend memory
* Fix not-so-rare-anymore bug wherein btree index page splits could
  fail due to choosing an infeasible split point
* Fix Borland C compile scripts
* Properly handle to_char('CC') for years ending in 00
  Year 2000 is in the twentieth century, not the twenty-first.
* "/contrib/tsearch2" localization improvements
* Fix incorrect permission check in information_schema.key_column_usage view
* Improve "VACUUM" performance for databases with many tables
* Fix for rare Assert() crash triggered by UNION
* Fix potentially incorrect results from index searches using ROW
  inequality conditions
* Tighten security of multi-byte character processing for UTF8
  sequences over three bytes long
* Fix bogus "permission denied" failures occurring on Windows due to
  attempts to fsync already-deleted files
* Fix bug that could cause the statistics collector to hang on
  Windows
* Fix possible crashes when an already-in-use PL/pgSQL function is
  updated
* Improve PL/pgSQL handling of domain types
* Fix possible errors in processing PL/pgSQL exception blocks
2007-02-05 11:10:02 +00:00
drochner
b45c3b9e34 update to 2.2.6
This switches to the new stable branch, too many changes to list.
2007-02-01 17:56:11 +00:00
wiz
29abbd1c1b Mark as BROKEN_IN pkgsrc-2006Q4, based on
ftp://asim.lip6.fr/outgoing/packages/i386/3.1/20070114.1132/broken.html
(latest 3.1/i386 bulk build of 2006Q4).

Feel free to fix them...
2007-01-31 00:04:11 +00:00
joerg
50490887b1 Modular Xorg support. 2007-01-30 22:38:10 +00:00
joerg
8cf8129bab No X11 here. 2007-01-30 22:34:06 +00:00
joerg
46f8251e0b Fix build on platforms which don't define ulong by default like
DragonFly.
2007-01-30 15:54:29 +00:00
adam
3c835bd816 Changes 1.2.18:
* Bug fixes
2007-01-30 13:26:55 +00:00
taca
c547ab46b9 Update ruby-mysql package to 2.7.3.
2006-12-20
    version 2.7.3
     - BUG: Mysql#query with block is stopped when last query failed.
2006-10-28
    version 2.7.2
     - BUG: Mysql::Stmt#result_metadata don't return nil. (Thanks to
        Hidetoshi)
     - BUG: Mysql#close check mysql_errno.
     - BUG: multistatement Mysql#query with block ignore error.
     - extconf.rb for Visual C++. (Thanks to Shugo Maeda)
     - support MySQL BIT type.
     - add Mysql::Field::TYPE_BIT, TYPE_NEWDECIMAL.
2007-01-28 15:21:06 +00:00
minskim
a3e27df24c Update ruby-activerecord to 1.15.1, required by rails-1.2.1.
Too many changes since 1.14.1.  See ${RUBY_DOCDIR}/activerecord/CHANGELOG.
2007-01-28 05:36:31 +00:00
dillo
5decf4267a Add libgda-mysql. 2007-01-26 11:02:47 +00:00
dillo
7978535ef1 Initial import of MySQL provider for libgda. 2007-01-26 11:02:12 +00:00
dillo
afe636d7b2 Modifications for upcoming libgda-mysql package. 2007-01-26 10:59:59 +00:00