summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2015-01-16Fix typo, s/GEM_CLEANBUOLD_EXTENSIONS/GEM_CLEANBUILD_EXTENSIONS/.taca1-2/+2
2015-01-14PostgreSQL 9.4.0:adam77-1/+4672
This release adds many new features which enhance PostgreSQL's flexibility, scalability and performance for many different types of database users, including improvements to JSON support, replication and index performance.
2015-01-14Update to 1.633:wiz2-6/+6
Changes in DBI 1.633 - 11th Jan 2015 Fixed selectrow_*ref to return undef on error in list context instead if an empty list. Changed t/42prof_data.t more informative Changed $sth->{TYPE} to be NUMERIC in DBD::File drivers as per the DBI docs. Note TYPE_NAME is now also available. [H.Merijn Brand] Fixed compilation error on bleadperl due DEFSV no longer being an lvalue [Dagfinn Ilmari Mannsåker] Added docs for escaping placeholders using a backslash. Added docs for get_info(9000) indicating ability to escape placeholders. Added multi_ prefix for DBD::Multi (Dan Wright) and ad2_ prefix for DBD::AnyData2
2015-01-12Changes 2.4.19:adam4-54/+12
* Fixed missing ReconnectLDAPObject._reconnect_lock when pickling * Added ldap.controls.pagedresults which is pure Python implementation of Simple Paged Results Control (see RFC 2696) and delivers the correct result size
2015-01-12Update "phpmyadmin" package to version 4.3.6. Changes since version 4.3.2:tron3-7/+9
- bug Undefined index notices while configuring recent and favorite tables - bug #4687 Designer breaks without configuration storage - bug #4686 Select elements flicker and selects something else - bug #4689 Setup tool creates "pma__favorites" incorrectly - bug #4685 Call to a member function isUserType() on a non-object - bug #4691 Do not include console when no server is selected - bug #4688 File permissions in archive - bug #4692 Dynamic javascripts gives 500 when db selected - bug Auto-configuration: tables were not created automatically - bug #4677 Advanced feature checker does not check for favorite tables feature - bug #4678 Some of the data stored in configuration storage are not deleted upon db or table delete - bug #4679 Setup does not allow providing a name for favorites table - bug #4680 Number of favorite table are not configurable in setup - bug #4681 'Central columns table' field in setup does not have a description - bug #4318 Default connection collation and sorting - bug #4683 Relational data is not properly updated on table rename - bug #4655 Undefined index: collation_connection (second patch) - bug #4682 4.3.3 & 4.3.4 Import sql created by mysqldump fails on foreign keys - bug #4676 Auto-configuration issues - bug #4416 New lines are removed when grid editing (part two: TEXT) - bug #4653 Always connection error was shown, on /setup at tab "configuration storage" - bug #4661 Drag and drop file import always fails - bug #4651 don't open console with esc - bug #4664 select min() displays 1 row, but reports the table amount of rows returned - bug #4666 Undefined indexes in table stucture print view of a view - bug #4663 Export missing back ticks for order table name - bug #4668 Remove from central columns error - bug #4670 CSV import reads both commas and values into first column after first row - bug #4642 phpmyadmin often fails to load due to specific load order - bug #4671 Unable to move all columns - bug #4645 Import of export created with mysqldump - bug #4672 "Distinct values" does not page - bug #4667 Consistency in borders - bug #4658 Illegal string offset (Data_length, Index_length) - bug #4655 Undefined index: collation_connection - bug #4673 Delimiter causing page lock - bug The "Recently used tables" setting should be with Nav panel - bug #4647 Can't disable Favorites - bug #4646 Version Check Broken - bug #4630 AJAX request infinite loop - bug #4649 Attributes field size smaller than others - bug #4622 Cannot remove table ordering on a Mac - bug Fix initial replication configuration - bug Undefined index central_columnswork - bug #4657 Don't have default blowfish_secret - bug #4656 Some error popups fade away too quickly - bug #4648 Consistency in borders - bug $cfg['Error_Handler']['display'] no longer necessary - bug #4659 Leading and trailing whitespace in column name
2015-01-07Update to 3.5.0:wiz2-6/+6
Version 3.5.0 Released January 6, 2015 - Allow "placeholder escaping" by the use of a backslash directly before it, e.g. "SELECT 1 FROM jsontable WHERE foo \\? ?" will contain a single placeholder, and the first question mark will be sent directly to the backend to be parsed as an operator. [Greg Sabino Mullane, Tim Bunce] (CPAN bug #101030) - Improve the workings of the ping() method, so it always tests for a valid database backend and returns the correct true/false. [Greg Sabino Mullane, with help from Andrew Gierth and Tim Bunce] (CPAN bug #100648) - Add get_info(9000) => 1 to indicate driver can escape placeholders. [Tim Bunce] - In tests, force the client_encoding to UTF8, skip tests that involve characters not supported by the server_encoding [Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>] - Fix memory leak when selecting from arrays [Dagfinn Ilmari Mannsåker, reported by Krystian Samp] - Make get_info much more efficient and slightly simpler. [Tim Bunce]
2015-01-03Add lost sphinxsearch hashes, make sure they are not lost next time.fhajny4-6/+12
2015-01-01Add db6ryoon1-1/+2
2015-01-01Import db6-6.1.19 as databases/db6.ryoon10-0/+5920
Berkeley DB is an embeddable database system that supports keyed access to data. The software is distributed in source code form, and developers can compile and link the source code into a single library for inclusion directly in their applications. Developers may choose to store data in any of several different storage structures to satisfy the requirements of a particular application. In database terminology, these storage structures and the code that operates on them are called access methods. The library includes support for the following access methods: * B+tree: Stores keys in sorted order, using either a programmer-supplied ordering function or a default function that does lexicographical ordering of keys. Applications may perform equality or range searches. * Hashing: Stores records in a hash table for fast searches based on strict equality. Extended Linear Hashing modifies the hash function used by the table as new records are inserted, in order to keep buckets underfull in the steady state. * Fixed and Variable-Length Records: Stores fixed- or variable-length records in sequential order. Record numbers may be immutable or mutable, i.e., permitting new records to be inserted between existing records or requiring that new records be added only at the end of the database. This package privides Berkeley DB 6 released under GNU AGPL3.
2015-01-01This builds fine on NetBSD; remove bogus NOT_FOR_PLATFORM.dholland1-2/+2
2015-01-01If postgres really still doesn't have mips atomics, it should be fixeddholland5-10/+10
(which is easy enough for all but archaic mips) so use BROKEN_ON_PLATFORM.
2015-01-01Remove obsolete restriction based on a.out shared libraries not working.dholland1-2/+6
Even if they still don't (it was noted ten years ago) I don't think we have any a.out platforms left in pkgsrc. (Do we?)
2014-12-31Update to 1.835:wiz2-6/+6
1.835 23 Dec 2014 * Silence more compiler warnings
2014-12-31Mark as not ready for python-3.x. Remove unnecessary line.wiz1-3/+2
2014-12-31Improve EGG_NAME default to work for packages with '-' in their name.wiz11-30/+11
Remove now unnecessary overrides in various packages.
2014-12-30Remove unused file.wiz1-1/+0
2014-12-30Add a few qore* packages.wiz1-1/+6
2014-12-30Import qore-sqlite3-module-1.0.1nb4 as databases/qore-sqlite3-module,wiz7-0/+94
packaged for wip by nros. SQLite 3 driver for the Qore language DBI system, using this module Qore programs can access SQLite 3 file and in-memory databases using the Datasource and DatasourcePool classes.
2014-12-30Import qore-pgsql-module-2.3nb4 as databases/qore-pgsql-module,wiz7-0/+188
packaged for wip by nros. PostgreSQL driver for Qore. It makes it possible for Qore programs to access PostgreSQL database through the Datasource, DatasourcePool and SQLStatement classes.
2014-12-30Import qore-openldap-module-1.0nb4 as databases/qore-openldap-module,wiz8-0/+217
packaged for wip by nros. The Qore openldap module makes it possible for Qore programs to communicate with LDAP servers.
2014-12-30Remove unused filewiz1-1/+0
2014-12-30Import qore-mysql-module-2.0.1nb4 as databases/qore-mysql-module,wiz8-0/+153
packaged for wip by nros. MySQL driver for Qores DBI system that allows Qore programs to MySQL Databases through the Datasource, DatasourcePool and SQLStatement classes.
2014-12-30Import qore-freetds-module-1.0.3nb4 as databases/qore-freetds-module,wiz8-0/+84
packaged for wip by nros. The Freetds DB driver for qore gives Qore programs the possibility to communicate with databases that use the TDS(Tabular Data Stream) protocol for access such as MS SQL Server and Sybase databases.
2014-12-21On 0.6.0 release, remove Ruby 1.8 support.obache1-1/+3
2014-12-21Remove unwanted entry, tight to Ruby-2.0.obache1-2/+1
2014-12-21Add an missing entry for Ruby>=2.1.obache1-1/+2
2014-12-21Change version number from fixed `0' to main Python distribution version,obache1-3/+2
same as other buitin module (already changed over a half year ago).
2014-12-16jnilib file will be installed on Darwin.obache1-0/+2
PR pkg/49474 by Sevan Janiyan.
2014-12-14Update to 1.834:wiz2-6/+6
1.834 11 Dec 2014 * Makefile.PL: version check is missing a zero RT #100844
2014-12-14Update "phpmyadmin" package to version 4.3.2. Changes since version 4.3.1:tron2-6/+6
- bug #4628 PHP error while exporting schema as PDF - bug #4631 Server selector submits two server parameter values - bug #4629 Problem with custom SQL queries using cookie authentication - bug Undefined index central_columnswork - bug #4632 Notice in ./libraries/Util.class.php#1916 Undefined index: query - bug #4633 Wrong parameter in fetchValue - bug #4634 Error reporting creates an infinite loop - bug #4635 Token mismatch while creating configuration storage - bug #4640 Incorrect reference to PHP 6 - bug #3794 failure to handle repeating empty columns when importing ODS - bug #4638 Default Export Method setting broken - bug #4639 Export SQL missing indentation first field - bug #4644 Error when browsing tables - bug #4637 Field Alignment
2014-12-12Update py-peewee to 2.4.4.fhajny3-7/+10
2.4.4 ===== * Backwards-incompatible changes - The argument signature for the SqliteExtDatabase.aggregate() decorator changed so that the aggregate name is the first parameter, and the number of parameters is the second parameter. If no values are specified, peewee will choose the name of the class and an un-specified number of arguments (-1). - The logic for saving a model with a composite key changed slightly. Previously, if a model had a composite primary key and you called save(), only the dirty fields would be saved. * Bugs fixed - #462 - #465, add hook for disabling backref validation. - #466, fix case-sensitive table names with migration module. - #469, save only dirty fields. * New features - Lots of enhancements and cleanup to the playhouse.apsw_ext module. - The playhouse.reflection module now supports introspecting indexes. - Added a model option for disabling backref validation. - Added support for the SQLite closure table extension. - Added support for virtual fields, which act on dynamically-created virtual table fields. - Added a new example: a virtual table implementation that exposes Redis as a relational database table. - Added a module playhouse.sqlite_aggregates that contains a handful of aggregates you may find useful when developing with SQLite. - Small documentation updates here and there. 2.4.3 ===== * Bugs fixed - #466, table names are case sensitive in the SQLite migrations module. - #465, added option to disable backref validation. - #462, use the schema name consistently with postgres reflection. * New features - New model Meta option to disable backref validation. See validate_backrefs. - Added documentation on ordering by calculated values. - Added basic PyPy compatibility. - Added logic to close cursors after they have been exhausted. - Structured and consolidated database metadata introspection, including improvements for introspecting indexes. - Added support to prefetch for traversing up the query tree. - Added introspection option to skip invalid models while introspecting. - Added option to limit the tables introspected. - Added closed connection detection to the MySQL connection pool. - Enhancements to passing options to creating virtual tables with SQLite. - Added factory method for generating Closure tables for use with the transitive_closure SQLite extension. - Added support for loading SQLite extensions. - Numerous test-suite enhancements and new test-cases. 2.4.2 ===== * Bugs fixed - #449, typo in the db_url extension, thanks to @malea for the fix. - #457 and #458, fixed documentation deficiences. * New features - Added support for importing data when using the DataSet extension. - Added an encrypted diary app to the examples. - Better index reconstruction when altering columns on SQLite databases with the migrate module. - Support for multi-column primary keys in the reflection module. - Close cursors more aggressively when executing SELECT queries.
2014-12-12Update mongo-c-driver to 1.0.2.fhajny2-7/+7
- A variety of fixes for read preference based node selection - Avoided inclusion of getLastError in 2.6 writeConcern - Correct handling of pass through params for collection_aggregate - Improved error reporting in socket connect - Public MONGOC_DEFAULT_CONNECTTIMEOUTMS
2014-12-120.100 22 April 2014mef2-7/+6
- fix primary_key_uri_escaped() to check explicitly for ref() eq ARRAY in case the primary key is an object (e.g. BigInt)
2014-12-120.180 2014-05-31mef2-7/+6
- update test app scripts with latest catalyst.pl - tweek .sql to make autoincrement PKs work for sqlite3 - change Plugin::Static::Simple to Plugin::Static::Simple::ByClass for test app (now matches SYNOPSIS) - switch to File::Slurp::Tiny 0.17 2013-10-11 - fix SYNOPSIS to add note about default_view 0.16 2012-10-31 - more pod patches from Adam Mackler - improve docs
2014-12-12Update 0.810 to 0.813mef2-7/+6
0.813 (11.07.2014) - John Siracusa <siracusa@gmail.com> * Added prepare_options parameter to get_objects_iterator_from_sql() and get_objects_from_sql() Manager methods (RT 98014) 0.812 (11.07.2014) - John Siracusa <siracusa@gmail.com> * Second attempt to address precision and scale mix-ups in auto-loaded numeric column metadata. * Fixed get_objects_count() with custom select lists and distinct (Reported by Alexander Karelas) * Fixed precision and scale references in the tutorial (RT 96079) * Fixed an incorrect method name in the Rose::DB::Object::Helpers documentation (RT 97602) * Fixed a bug where save() parameters were not passed to map record save() calls (RT 98730) * Corrected a typo in the documentation (RT 94100) * Updated tests to work with DBD::Pg versions greater than 2.x.x. 0.811 (03.21.2014) - John Siracusa <siracusa@gmail.com> * Fixed a bug that prevented many-to-many map records from being saved to the database (RT 93531)
2014-12-12Update 1.958 to 1.976mef2-7/+6
1.976 2014-10-03 15:05:58 Europe/Amsterdam 1.975 2014-08-03 20:50:25 Europe/Amsterdam * Clarification about reconnect and read_timeout (#89) * Test::CPAN::Meta (et al.) are required even if unused (#92) 1.974 2014-05-16 21:42:48 Europe/Amsterdam * released as stable version, no change 1.973_04 2014-05-12 22:53:06 Europe/Amsterdam * release again, last one was screwed up. * fix #85 (PR #86) reconnect during transaction 1.973_03 2014-05-12 22:49:07 Europe/Amsterdam * fix #85 (PR #86) reconnect during transaction 1.973_02 2014-04-30 12:04:29 Europe/Amsterdam * merge PR #84 optimize try read sock 1.973_01 2014-04-26 18:00:31 Europe/Amsterdam * use new network code from Ivan Kruglov * fix sentinel tests * fix #81: doc for 'every' option 1.972 2014-02-18 00:54:01 Europe/Amsterdam * Sentinel features (connections, timeouts, etc) support * various bugfixes and testfixes * fix network code for BSDs * no_auto_connect_on_new 1.971 2014-02-01 09:55:11 Europe/Paris * skip some tests that fail on some platforms for now 1.970 2014-01-30 15:07:42 Europe/Amsterdam * fix tests breaking in some case 1.969 2014-01-30 13:19:28 Europe/Amsterdam * Clarification for (p)unsubscribe commands. * use Test::TCP for testing 1.968 2014-01-30 12:19:11 Europe/Amsterdam * Add a no_auto_connect_on_new parameter to new() to allow users to call $x = Redis->new and then $x->connect, instead of Redis auto-connecting. Useful for tuning the cnx_timeout parameter. 1.967 2013-12-28 22:58:55 Europe/Paris * use new IO::Socket::Timeout with different API 1.966 2013-12-17 13:58:33 Europe/Amsterdam * fix tests for Redis 2.8 1.965 2013-11-29 09:28:36 Europe/Amsterdam * fix #60: TEST_REQUIRES needs newer MakeMaker * fix #34: perl-redis doesn't receive subcribed message if server restart * fix #38: select new database doesn't survive after reconnect * minor documentation fixes 1.964 2013-11-14 15:45:08 Europe/Amsterdam * minor fix to dist.ini to fix github url 1.963 2013-11-13 22:44:29 Europe/Paris * Add documentation for the slowlog command PR #44 (rgs) * doc fix, duplicate spop PR #48 (nightlord) * Redis client is now fork safe PR #51 (songmu) * rewrite dist.ini 1.962 2013-10-16T14:58:30Z * merge #54 (fix for broken test) * Parameter name to new() can be a CodeRef, dynamic connection names * admin: added co-maintainer Damien Krotkine <dams@zarb.org> 1.961 2013-01-23T15:09:47Z * Add wait_one_response() for better pipeline management 1.960 2013-01-23T11:28:40Z * Make the new() name parameter safe to use with all redis- server versions 1.959 2013-01-22T14:46:42Z * __try_read_sock: test error conditions more thoroughly (issue #31) * Improve Test::SpawnRedisServer: multi-server support * tidyall the code and docs
2014-12-12Update 0.1802 to 0.2100mef2-7/+6
0.2100 2014-04-05 Added support for ::Replicated options: balancer_args, pool_type, and pool_args 0.2001 2014-03-12 Skip the replicated tests if the required deps are not installed. Removed the deprecated pckg option. Added a deprecation warning for the pass option. Updated the documentation. 0.2000 2014-03-11 Added support for database slaves via DBIx::Class::Storage::DBI::Replicated. Thanks to Al Newkirk for the idea and the initial implementation. 0.1901 2014-02-04 Added SQL::Translator prereq for tests to pass. 0.1900 2014-02-04 Added support for schema aliases. Added schema_loader_naming option. Can now provide password instead of pass, to be more DBIC friendly. Simplified tests. 0.1803 2013-10-06 Show the root cause when unable to load a schema.
2014-12-12Update 0.001 to 0.002mef2-7/+6
0.002 2013-09-11 - Move repository to github - Update Metadata - Move AUTHOR tests to xt/ - Adjust requirements to recent environments (Perl 5.14 is the new 5.8 ^^)
2014-12-12Update 0.74 to 0.77mef2-7/+6
0.77 2013-12-01 * Fix for perl 5.19.4 parsing of @{ foo { ... } } * Fix signature 0.76 2013-06-17 * Provide source repository info in metadata * Default Cached::Memcached dependency off on Windows due to known build problems Thanks to Alexandr Ciornii for both. 0.75 2013-01-29 - Bug fixes: * backport a sort order fix for Pg handles from Searchbuilder * Work around Pg's sub-second formatting and DateTime::Parser::ISO8601 * Don't attempt to filter, eq-check, validate, or otherwise munge functions - Tests: * Fix failures on 5.17.6, reported as [rt.cpan.org #82978] * Update test to account for the ported bug fix in f9439a0 - Cleanup: * remove a useless wrapper function - Documentation: * SPROUT points out that the second fix in 0.73 is actually a run-time error, of course
2014-12-12Update 1.68 to 1.70mef2-7/+6
------------------- 1.70 Sat Jan 25 06:44:12 PST 2014 - Minor patch to 1.69, as encoding function is only reliably supported by Perl newer than v5.8.1. - Patch internal method openFileWithEncoding(), so that older Perl version will not give an error. - Fixed a warning in fromFileGuessOS, introduced in 1.69. 1.69 Tue Jan 14 10:22:19 PST 2014 Fix a minor bug in pivot() related to colToSplitIsStringOrNumeric. Integer column names are allowed. However, fromFile by default does not take numeric column names, unless allowNumericHeader is set to 1. Patch fromFile(), checkHeader(), colIndex(), fromFileIsHeader(), fromFileGetTopLines() to support numeric column header. An integer is first interpreted as a column name. Therefore, accessing a column by its ordinal number may not be possible, if the number is used as a column name. In such case, first fetch the corresponding column name and access by name. Support file encoding methods in fromFile, fromCSV, fromTSV. E.g., fromCSV("filename, 1, undef, {encoding=> 'UTF-8'}) UTF-8 is the default encoding, can be controlled by $Data::Table::DEFAULTS{ENCODING}. Thanks to questions asked by Sergio Basto and Thomas Hofmann. If an integer is passed to colIndex(), it is interpreted as string first for column lookup. fromFile by default will allow numeric headers (but not all column headers can be numeric). support skip_empty in melt();
2014-12-12(pkgsrc) remove patch-lib_DBM_Deep.pod, upstream corrected.mef4-31/+14
(upstream) Update 2.009 to 2.0011 2.0011 Jan 12 16:00:00 2013 PDT - POD fixes by H. Merijn Brandt (The X<> tag - Thanks!)
2014-12-11Remove patches whose checksums were removed from distinfo duringwiz2-71/+0
last update.
2014-12-10Update to 1.833:wiz2-6/+6
1.833 9 Dec 2014 * More Silence compiler warnings * 1.832 breaks bleadperl C89 build RT #100812 1.832 8 Dec 2014 * Silence compiler warnings * C++ change from blead
2014-12-10Update to 1.46:wiz2-6/+6
1.46 2014-12-10 - Switched to a production version. (ISHIGAKI) 1.45_06 2014-11-26 - Silenced a compile-time warning (Unescaped left brace in regex is deprecated) in PerlData virtual table under bleadperl 1.45_05 2014-11-25 - Updated to SQLite 3.8.7.2 - Restored regexp support in PerlData virtual table by secure reimplementation using closure (DAMI++) 1.45_04 2014-10-28 *** CHANGES THAT MAY POSSIBLY BREAK YOUR OLD APPLICATIONS *** - Changed to apply quotemeta() to parameters while building a query for a virtual table using PerlData for security. (RIBASUSHI++ and MAUKE++) (DAMI, ISHIGAKI) 1.45_03 2014-10-25 - Fixed regression of 0 as integer (ISHIGAKI) 1.45_02 2014-10-23 - Improved int overflow handling under 32bit strawberry perl (ISHIGAKI) 1.45_01 2014-10-22 - Updated to SQLite 3.8.7 (ISHIGAKI) - Resolved #76395 (hopefully): int values over 32 bit in length produce an error "datatype mismatch" (ISHIGAKI)
2014-12-10Update "phpmyadmin" package to version 4.3.1.tron3-50/+131
The major changes in version 4.3.* are: - Smart sorting for int keys - Confirmation message when dropping user(s) - Confirm dialog on accidentally leaving a page - Allow clicking an approximate row count to get a correct one - Support for editing binary fields in hexadecimal - MariaDB 10+ multi-master replication support - Allow saving query charts as images - Use aliases in SQL export for tables and columns - Export with table/column name changes - Dynamic process list - Drag and Drop SQL import - Preview SQL instead of executing it - Run SQL query: Allow rollback for InnoDB tables - Zeroconf PMA tables support - Regexp replace - Avoid session timeout when user is active - MySQL 5.7.5 compatibility - Avoid session timeout when user is active - Multiple-column foreign key relation - Charts for data in <x-axis, series,="" value=""> format - Range Search Capability - Improvements for the table editor (index creation) - PHP OpenSSL support for cookie encryption/decryption
2014-12-10Set PATH for postgresql SMF, helps 3rd party software invoked viafhajny5-0/+5
modules like PL/Perl.
2014-12-10Update redis to 2.8.18.fhajny3-14/+14
* [FIX] Linenoise updated to be more VT100 compatible. (Salvatore Sanfilippo) * [FIX] A number of typos fixed inside comments. (Various authors) * [FIX] redis-cli no longer quits after long timeouts. (Matt Stancliff) * [FIX] Test framework improved to detect never terminating scripts, cleanup instances on crashes. (Salvatore Sanfilippo) * [FIX] PFCOUNT can be used on slaves now. (Salvatore Sanfilippo) * [FIX] ZSCAN no longer report very small scores as 0. (Matt Stancliff, Michael Grunder, Salvatore Sanfilippo) * [FIX] Don't show the ASCII logo if syslog is enabled. Redis is now an Enterprise Grade product. (Salvatore Sanfilippo) * [NEW] EXPERIMENTAL: Diskless replication, for more info check the doc at http://redis.io/topics/replication. (Salvatore Sanfilippo). * [NEW] Transparent Huge Pages detection and reporting in logs and LATENCY DOCTOR output. (Salvatore Sanfilippo) * [NEW] Many Lua scripting enhancements: Bitops API, cjson upgrade and tests, cmsgpack upgrade. (Matt Stancliff) * [NEW] Total and instantaneous Network bandwidth tracking in INFO. * [NEW] DEBUG POPULATE two args form implemented (old form still works). The second argument is the key prefix. Default is "key:" (Salvatore Sanfilippo) * [NEW] Check that tcp-backlog is matched by /proc/sys/net/core/somaxconn, and warn about it if not. (Salvatore Sanfilippo)
2014-12-10Changes 3.8.7.4:adam7-22/+23
Bug fix: Add in a mutex that was omitted from the previous release.
2014-12-08Changes 3.8.7.3:adam7-22/+24
* Bug fix: Ensure the cached KeyInfo objects (an internal abstraction not visible to the application) do not go stale when operating in shared cache mode and frequently closing and reopening some database connections while leaving other database connections on the same shared cache open continuously. * Bug fix: Recognize that any column in the right-hand table of a LEFT JOIN can be NULL even if the column has a NOT NULL constraint. Do not apply optimizations that assume the column is never NULL.
2014-12-07Udate 0.00012 to 0.00013mef2-7/+6
0.00013 2014-02-27 - Pod fixes (RT#88875) - Fix deps (github#1)