Changeset: 5078b7afc183 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5078b7afc183
Modified Files:
        MonetDB.spec
        NT/monetdb_config.h.in
        configure.ag
Branch: default
Log Message:

Merge with Mar2011 branch.


diffs (truncated from 480 to 300 lines):

diff --git a/.hgtags b/.hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -434,3 +434,4 @@
 491925a23d21d3599a5680618f4f00f8b8710c78 Oct2010_1
 be8749b7640878f829575ef9daa995810d6fe25d Oct2010_3
 3dc7b6687e454fc31ce9d3887aa01e457de4e9f2 Mar2011_root
+e4e992bb9279acc293403527538d9909f46f2325 Mar2011_1
diff --git a/MonetDB.spec b/MonetDB.spec
--- a/MonetDB.spec
+++ b/MonetDB.spec
@@ -27,7 +27,7 @@
 Group: Applications/Databases
 License: MPL - http://monetdb.cwi.nl/Legal/MonetDBLicense-1.1.html
 URL: http://monetdb.cwi.nl/
-Source: 
http://dev.monetdb.org/downloads/sources/Oct2010/%{name}-%{version}.tar.gz
+Source: 
http://dev.monetdb.org/downloads/sources/Mar2011/%{name}-%{version}.tar.gz
 
 BuildRequires: bison
 BuildRequires: bzip2-devel
@@ -574,6 +574,76 @@
 rm -fr $RPM_BUILD_ROOT
 
 %changelog
+* Thu Mar 17 2011 Sjoerd Mullender <sjo...@acm.org> - 11.1.1-20110317
+- Rebuilt.
+
+* Tue Mar 15 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- geom: Set endianness for wkb en/decoding.
+
+* Sat Mar 05 2011 Stefan de Konink <ste...@konink.de> - 11.1.1-20110317
+- monetdb5: sphinx module: update, adding limit/max_results support
+
+* Mon Feb 14 2011 Sjoerd Mullender <sjo...@acm.org> - 11.1.1-20110317
+- clients: Fixed bug 2677: SQL_DESC_OCTET_LENGTH should give the size in bytes
+  required to copy the data.
+
+* Mon Jan 24 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- clients: Disable timer functionality for non-XQuery languages since it is
+  incorrect, bug #2705
+
+* Mon Jan 24 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- sql: Fix bug #2648, do not allow restarting a sequence with NULL via the
+  result of a sub-query.
+
+* Fri Jan 14 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- gdk: MonetDB/src/gdk was moved to gdk
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- clients: Added mapi_get_uri function to retrieve mapi URI for the connection
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- merovingian: Allow use of globs with all commands that accept database names 
as
+  their parameters
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- java: PreparedStatements now free the server-side resources attached to them
+  when closed.  This implements bug #2720
+
+* Tue Jan  4 2011 Niels Nes <ni...@cwi.nl> - 11.1.1-20110317
+- sql: Allow clients to release prepared handles using Xrelease commands
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- clients: Allow to dump table data using INSERT INTO statements, rather than 
COPY
+  INTO + CSV data using the -N/--inserts flag of mclient and msqldump.
+  Bug #2727
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- clients: Added support for \dn to list schemas or describe a specific one
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- clients: Added support for \df to list functions or describe a specific one
+- clients: Added support for \ds to list sequences or describe a specific one
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- clients: Added support for wildcards * and ? in object names given to \d
+  commands, such that pattern matching is possible, e.g. \d my*
+- clients: Added support for \dS that lists also system tables
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- clients: object names given to \d are now lowercased, unless quoted by either
+  single or double quotes
+- clients: Strip any trailing whitespace with the \d command
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- merovingian: merovingian has been renamed into monetdbd.  Internally, 
monetdbd keeps
+  referring to merovingian for e.g. settings and logfiles.  Merovingian
+  has been renamed to make the process more recognisable as part of the
+  MonetDB suite.
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- monetdb5: Improve the performance of remote.put for BAT arguments.  The put
+  speed is now roughly equal to the speed of get on a BAT.
+
 * Tue Jan  4 2011 Sjoerd Mullender <sjo...@acm.org> - 11.0.0-0
 - Created top-level bootstrap/configure/make with new version numbers.
 
diff --git a/clients/ChangeLog-Archive b/clients/ChangeLog-Archive
--- a/clients/ChangeLog-Archive
+++ b/clients/ChangeLog-Archive
@@ -1,6 +1,39 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Mon Feb 14 2011 Sjoerd Mullender <sjo...@acm.org> - 11.1.1-20110317
+- Fixed bug 2677: SQL_DESC_OCTET_LENGTH should give the size in bytes
+  required to copy the data.
+
+* Mon Jan 24 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- Disable timer functionality for non-XQuery languages since it is
+  incorrect, bug #2705
+
+* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- Added mapi_get_uri function to retrieve mapi URI for the connection
+
+* Fri Dec 10 2010 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- Allow to dump table data using INSERT INTO statements, rather than COPY
+  INTO + CSV data using the -N/--inserts flag of mclient and msqldump.
+  Bug #2727
+
+* Wed Dec  8 2010 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- Added support for \dn to list schemas or describe a specific one
+
+* Thu Nov 25 2010 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- Added support for \df to list functions or describe a specific one
+- Added support for \ds to list sequences or describe a specific one
+
+* Mon Nov 22 2010 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- Added support for wildcards * and ? in object names given to \d
+  commands, such that pattern matching is possible, e.g. \d my*
+- Added support for \dS that lists also system tables
+
+* Fri Nov 19 2010 Fabian Groffen <fab...@cwi.nl> - 11.1.1-20110317
+- object names given to \d are now lowercased, unless quoted by either
+  single or double quotes
+- Strip any trailing whitespace with the \d command
+
 * Fri Nov 19 2010 Fabian Groffen <fab...@cwi.nl> - 1.40.3-20101215
 - Workaround usage of strncat to solve mclient/mapilib aborts from
   bug #2725
diff --git a/clients/ChangeLog.Mar2011 b/clients/ChangeLog.Mar2011
--- a/clients/ChangeLog.Mar2011
+++ b/clients/ChangeLog.Mar2011
@@ -1,36 +1,3 @@
 # ChangeLog file for clients
 # This file is updated with Maddlog
 
-* Mon Feb 14 2011 Sjoerd Mullender <sjo...@acm.org>
-- Fixed bug 2677: SQL_DESC_OCTET_LENGTH should give the size in bytes
-  required to copy the data.
-
-* Mon Jan 24 2011 Fabian Groffen <fab...@cwi.nl>
-- Disable timer functionality for non-XQuery languages since it is
-  incorrect, bug #2705
-
-* Tue Jan  4 2011 Fabian Groffen <fab...@cwi.nl>
-- Added mapi_get_uri function to retrieve mapi URI for the connection
-
-* Fri Dec 10 2010 Fabian Groffen <fab...@cwi.nl>
-- Allow to dump table data using INSERT INTO statements, rather than COPY
-  INTO + CSV data using the -N/--inserts flag of mclient and msqldump.
-  Bug #2727
-
-* Wed Dec  8 2010 Fabian Groffen <fab...@cwi.nl>
-- Added support for \dn to list schemas or describe a specific one
-
-* Thu Nov 25 2010 Fabian Groffen <fab...@cwi.nl>
-- Added support for \df to list functions or describe a specific one
-- Added support for \ds to list sequences or describe a specific one
-
-* Mon Nov 22 2010 Fabian Groffen <fab...@cwi.nl>
-- Added support for wildcards * and ? in object names given to \d
-  commands, such that pattern matching is possible, e.g. \d my*
-- Added support for \dS that lists also system tables
-
-* Fri Nov 19 2010 Fabian Groffen <fab...@cwi.nl>
-- object names given to \d are now lowercased, unless quoted by either
-  single or double quotes
-- Strip any trailing whitespace with the \d command
-
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,127 @@
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * Rebuilt.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Thu, 17 Mar 2011 11:30:33 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * geom: Set endianness for wkb en/decoding.
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 15 Mar 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * monetdb5: sphinx module: update, adding limit/max_results support
+
+ -- Stefan de Konink <ste...@konink.de>  Sat, 05 Mar 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: Fixed bug 2677: SQL_DESC_OCTET_LENGTH should give the size in 
bytes
+    required to copy the data.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Mon, 14 Feb 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: Disable timer functionality for non-XQuery languages since it is
+    incorrect, bug #2705
+
+ -- Fabian Groffen <fab...@cwi.nl>  Mon, 24 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * sql: Fix bug #2648, do not allow restarting a sequence with NULL via the
+    result of a sub-query.
+
+ -- Fabian Groffen <fab...@cwi.nl>  Mon, 24 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * gdk: MonetDB/src/gdk was moved to gdk
+
+ -- Fabian Groffen <fab...@cwi.nl>  Fri, 14 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: Added mapi_get_uri function to retrieve mapi URI for the 
connection
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * merovingian: Allow use of globs with all commands that accept database 
names as
+    their parameters
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * java: PreparedStatements now free the server-side resources attached to 
them
+    when closed.  This implements bug #2720
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * sql: Allow clients to release prepared handles using Xrelease commands
+
+ -- Niels Nes <ni...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: Allow to dump table data using INSERT INTO statements, rather 
than COPY
+    INTO + CSV data using the -N/--inserts flag of mclient and msqldump.
+    Bug #2727
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: Added support for \dn to list schemas or describe a specific one
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: Added support for \df to list functions or describe a specific one
+  * clients: Added support for \ds to list sequences or describe a specific one
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: Added support for wildcards * and ? in object names given to \d
+    commands, such that pattern matching is possible, e.g. \d my*
+  * clients: Added support for \dS that lists also system tables
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * clients: object names given to \d are now lowercased, unless quoted by 
either
+    single or double quotes
+  * clients: Strip any trailing whitespace with the \d command
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
+
+monetdb (11.1.1-20110317) unstable; urgency=low
+
+  * merovingian: merovingian has been renamed into monetdbd.  Internally, 
monetdbd keeps
+    referring to merovingian for e.g. settings and logfiles.  Merovingian
+    has been renamed to make the process more recognisable as part of the
+    MonetDB suite.
+
+ -- Fabian Groffen <fab...@cwi.nl>  Tue, 4 Jan 2011 11:30:32 +0100
_______________________________________________
Checkin-list mailing list
Checkin-list@monetdb.org
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to