head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.6 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.4 pkgsrc-2012Q4-base:1.2 pkgsrc-2011Q4:1.2.0.2 pkgsrc-2011Q4-base:1.2; locks; strict; comment @// @; 1.2 date 2011.07.29.12.30.36; author obache; state dead; branches; next 1.1; 1.1 date 2011.07.11.08.32.38; author obache; state Exp; branches; next ; desc @@ 1.2 log @Update groonga to 1.2.4. Release 1.2.4 - 2011/07/29 -------------------------- Improvements ^^^^^^^^^^^^ * Re-supported *BSD. (Reported by OBATA Akio) * Improved sed related portability. (Suggested by OBATA Akio) * Re-supported Visual C++ 2008. * Supported :doc:`commands/check` for hash table. * Ignored invalid _score in --sortby of :doc:`commands/select` for convenience. #1030 * Added document about :doc:`log`. * Supported ~/.editrc. * Supported ~/.groonga-history. Fixes ^^^^^ * Fixed broken libedit support. (Reported by Daiki Ueno) * Fixed source URL in *.spec (Reported by Daiki Ueno) * Fixed patricia trie cursor returns wrong records. * Added missing database lock clear for grn_obj_clear_lock() for database. * Fixed wrong record's column values deletion possible on record deletion. @ text @$NetBSD: patch-lib_dat_trie.cpp,v 1.1 2011/07/11 08:32:38 obache Exp $ * *BSD have MAP_ANONY not MAP_ANONYMOUS. https://github.com/groonga/groonga/commit/6a6362a00df314c734dfdd40d59671b1b64e53df --- lib/dat/trie.cpp.orig 2011-06-28 12:51:56.000000000 +0000 +++ lib/dat/trie.cpp @@@@ -9,6 +9,10 @@@@ #include #include +#if defined(MAP_ANON) && !defined(MAP_ANONYMOUS) +#define MAP_ANONYMOUS MAP_ANON +#endif + namespace grn { namespace dat { @ 1.1 log @Update groonga to 1.2.3. Release 1.2.3 - 2011/06/29 -------------------------- Improvements ^^^^^^^^^^^^ * Added invalid table name check. #912 * Added groonga-query-log-analyzer that analyze query log. * groonga command shows failed command on error. * groonga command shows file name and line no on error. * Improved error message of :doc:`commands/column_create`. #952 * Added GRN_OBJ_TABLE_DAT_KEY, double array trie, table. (experimental) Fixes ^^^^^ * fix get command crash. (Reported by OBATA Akio) * fix elapsed time overflow in query log. #944 @ text @d1 1 a1 1 $NetBSD$ @