You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sis.apache.org by de...@apache.org on 2019/08/27 19:53:26 UTC

[sis] 02/04: Update links in documentation.

This is an automated email from the ASF dual-hosted git repository.

desruisseaux pushed a commit to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git

commit 1c8d8b1ef165dd19afc49cb031504ce4179100e3
Author: Martin Desruisseaux <ma...@geomatys.com>
AuthorDate: Tue Aug 27 17:54:11 2019 +0200

    Update links in documentation.
---
 .../main/java/org/apache/sis/internal/metadata/sql/ScriptRunner.java  | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/core/sis-metadata/src/main/java/org/apache/sis/internal/metadata/sql/ScriptRunner.java b/core/sis-metadata/src/main/java/org/apache/sis/internal/metadata/sql/ScriptRunner.java
index d7a96d2..0f2884d 100644
--- a/core/sis-metadata/src/main/java/org/apache/sis/internal/metadata/sql/ScriptRunner.java
+++ b/core/sis-metadata/src/main/java/org/apache/sis/internal/metadata/sql/ScriptRunner.java
@@ -313,6 +313,8 @@ public class ScriptRunner implements AutoCloseable {
                  * HSQLDB stores tables in memory by default. For storing the tables on files, we have to
                  * use "CREATE CACHED TABLE" statement, which is HSQL-specific. For avoiding SQL dialect,
                  * the following statement change the default setting on current connection.
+                 *
+                 * Reference: http://hsqldb.org/doc/guide/dbproperties-chapt.html#dpc_db_props_url
                  */
                 statement.execute("SET DATABASE DEFAULT TABLE TYPE CACHED");
                 break;
@@ -389,7 +391,7 @@ public class ScriptRunner implements AutoCloseable {
      *
      * <b>Limitation:</b> the {@code inScript} word to replace must be a single word with no space.
      * If the text to replace contains two words (for example {@code "CREATE TABLE"}), then revert
-     * the commit after {@code 90949f7b5d9e58af90c517cadebc845faf734167} for bringing back this functionality.
+     * commit {@code bceb569558bfb7e3cf1a14aaf9261e786db06856} for bringing back this functionality.
      *
      * @param  inScript     the single word in the script which need to be replaced.
      * @param  replacement  the word(s) to use instead of {@code inScript} word.