[Libreoffice-commits] core.git: Branch 'aoo/trunk' - hsqldb/patches
Andrea Pescetti
pescetti at apache.org
Tue Jul 9 11:07:43 PDT 2013
hsqldb/patches/i121754.patch | 69 +------------------------------------------
1 file changed, 3 insertions(+), 66 deletions(-)
New commits:
commit f0cc294bb37948f710c6d7fd5f00bd845cc6b1a1
Author: Andrea Pescetti <pescetti at apache.org>
Date: Tue Jul 9 17:57:26 2013 +0000
#i121754# Simplify the patch to avoid line-end problems.
Found-By: Regina Henschel <rb.henschel at t-online.de>
diff --git a/hsqldb/patches/i121754.patch b/hsqldb/patches/i121754.patch
index 33a1ac3..fe3d6fb 100644
--- a/hsqldb/patches/i121754.patch
+++ b/hsqldb/patches/i121754.patch
@@ -53,30 +53,6 @@ diff -urbwB ext_sources/hsqldb/build/build.xml ext_sources/hsqldb_1_8_0_11/build
<arg file="${src}/org/hsqldb/lib/java/JavaSystem.java"/>
<arg file="${src}/org/hsqldb/lib/HsqlTimer.java"/>
<arg file="${src}/org/hsqldb/jdbc/jdbcBlob.java"/>
-diff -urbwB ext_sources/hsqldb/index.html ext_sources/hsqldb_1_8_0_11/index.html
---- misc/hsqldb/index.html 2008-06-01 15:32:15.000000000 +0200
-+++ misc/build/hsqldb/index.html 2013-07-05 23:37:19.000000000 +0200
-@@ -14,7 +14,7 @@
- new features and improvements. There are quite a large number of changes and
- new features compared to 1.7.1. Please read the documentation for details. Please
- also check the web site at <a href="http://hsqldb.org/" target="_top">http://hsqldb.org</a> periodically
-- for any release updates. This point release 1.8.0.10 features many bug fixes
-+ for any release updates. This point release 1.8.0.11 features many bug fixes
- introduced since the original release of 1.8.0 in June 2005.</p>
- <p>This download contains the following files and directories: </p>
-
-diff -urbwB ext_sources/hsqldb/readme.txt ext_sources/hsqldb_1_8_0_11/readme.txt
---- misc/hsqldb/readme.txt 2008-06-01 15:32:31.000000000 +0200
-+++ misc/build/hsqldb/readme.txt 2013-07-05 23:37:49.000000000 +0200
-@@ -1,5 +1,6 @@
- Readme File
--June 2008
--
This package contains HSQLDB 1.8.0.10
-+June 2013
-+This package contains HSQLDB 1.8.0.11
-+Thie version is based on version 1.8.0.10 and includes minor patches added by OpenOffice. It compiles with Java 7
-
- HSQLDB is a relational database engine and a set of tools written in Java.The file index.html in this directory contains the list of directories with their contents.Documentation and license information can be found in the /doc directory.Project home page: http://hsqldb.orgPlease check the site periodically for updated versions.
diff -urbwB ext_sources/hsqldb/src/org/hsqldb/Expression.java ext_sources/hsqldb_1_8_0_11/src/org/hsqldb/Expression.java
--- misc/hsqldb/src/org/hsqldb/Expression.java 2008-05-27 17:15:05.000000000 +0200
+++ misc/build/hsqldb/src/org/hsqldb/Expression.java 2013-07-05 23:40:51.000000000 +0200
@@ -401,7 +377,7 @@ diff -urbwB ext_sources/hsqldb/src/org/hsqldb/Select.java ext_sources/hsqldb_1_8
* For work added by the HSQL Development Group:
*
- * Copyright (c) 2001-2008, The HSQL Development Group
-+ * Copyright (c) 2001-2005, The HSQL Development Group
++ * Copyright (c) 2001-2005, The HSQL Development Group
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -409,7 +385,7 @@ diff -urbwB ext_sources/hsqldb/src/org/hsqldb/Select.java ext_sources/hsqldb_1_8
for (int i = 0; i < iResultLen; i++) {
e = exprColumns[i];
rmd.colTypes[i] = e.getDataType();
-+ rmd.classNames[i] = e.getValueClassName();
++ rmd.classNames[i] = e.getValueClassName();
rmd.colSizes[i] = e.getColumnSize();
rmd.colScales[i] = e.getColumnScale();
rmd.colLabels[i] = e.getAlias();
@@ -417,7 +393,7 @@ diff -urbwB ext_sources/hsqldb/src/org/hsqldb/Select.java ext_sources/hsqldb_1_8
rmd.colNames[i] = e.getColumnName();
if (rmd.isTableColumn(i)) {
-+ rmd.schemaNames[i] = e.getTableSchemaName();
++ rmd.schemaNames[i] = e.getTableSchemaName();
rmd.colNullable[i] = e.nullability;
rmd.isIdentity[i] = e.isIdentity;
rmd.isWritable[i] = e.isWritable;
@@ -452,42 +428,3 @@ diff -urbwB ext_sources/hsqldb/src/org/hsqldb/TableWorks.java ext_sources/hsqldb
table.resetDefaultsFlag();
return;
-diff -urbwB ext_sources/hsqldb/src/org/hsqldb/util/DatabaseManager.java ext_sources/hsqldb_1_8_0_11/src/org/hsqldb/util/DatabaseManager.java
---- misc/hsqldb/src/org/hsqldb/util/DatabaseManager.java 2008-03-17 17:26:48.000000000 +0100
-+++ misc/build/hsqldb/src/org/hsqldb/util/DatabaseManager.java 2013-07-06 00:01:06.000000000 +0200
-@@ -124,13 +124,13 @@
- "See the forums, mailing lists, and HSQLDB User Guide\n"
- + "at http://hsqldb.org.\n\n"
- + "Please paste the following version identifier with any\n"
-- + "problem reports or help requests: $Revision: 1.37 $"
-+ + "problem reports or help requests: $Revision: 1.33 $"
- + (TT_AVAILABLE ? ""
- : ("\n\nTransferTool classes are not in CLASSPATH.\n"
- + "To enable the Tools menu, add 'transfer.jar' to your class path."));
- ;
- private static final String ABOUT_TEXT =
-- "$Revision: 1.37 $ of DatabaseManagerSwing\n\n"
-+ "$Revision: 1.33 $ of DatabaseManagerSwing\n\n"
- + "Copyright (c) 1995-2000, The Hypersonic SQL Group.\n"
- + "Copyright (c) 2001-2007, The HSQL Development Group.\n"
- + "http://hsqldb.org (User Guide available at this site).\n\n\n"
-diff -urbwB ext_sources/hsqldb/src/org/hsqldb/util/DatabaseManagerSwing.java ext_sources/hsqldb_1_8_0_11/src/org/hsqldb/util/DatabaseManagerSwing.java
---- misc/hsqldb/src/org/hsqldb/util/DatabaseManagerSwing.java 2008-03-19 12:52:12.000000000 +0100
-+++ misc/build/hsqldb/src/org/hsqldb/util/DatabaseManagerSwing.java 2013-07-06 00:01:34.000000000 +0200
-@@ -265,14 +265,14 @@
- "See the forums, mailing lists, and HSQLDB User Guide\n"
- + "at http://hsqldb.org.\n\n"
- + "Please paste the following version identifier with any\n"
-- + "problem reports or help requests: $Revision: 1.80 $"
-+ + "problem reports or help requests: $Revision: 1.79 $"
- + (TT_AVAILABLE ? ""
- : ("\n\nTransferTool classes are not in CLASSPATH.\n"
- + "To enable the Tools menu, add 'transfer.jar' "
- + "to your class path."));
- ;
- private static final String ABOUT_TEXT =
-- "$Revision: 1.80 $ of DatabaseManagerSwing\n\n"
-+ "$Revision: 1.79 $ of DatabaseManagerSwing\n\n"
- + "Copyright (c) 1995-2000, The Hypersonic SQL Group.\n"
- + "Copyright (c) 2001-2007, The HSQL Development Group.\n"
- + "http://hsqldb.org (User Guide available at this site).\n\n\n"
More information about the Libreoffice-commits
mailing list