Fossil

Check-in [30da8e8b08]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Do not attempt to access the check-out database from the server.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 30da8e8b087d0ede6601791c5a919cf1f9a7871c
User & Date: drh 2013-04-28 16:02:23.370
Context
2013-04-28
18:26
Make no attempt to output closing P tags when rendering wiki as this can sometimes result in mis-rendered wiki text. ... (check-in: e6cada8219 user: drh tags: trunk)
16:02
Do not attempt to access the check-out database from the server. ... (check-in: 30da8e8b08 user: drh tags: trunk)
2013-04-27
01:28
Added --verbose|-v as alias for --full|-f option to /json/stat, per ML discussion. Removed a stray 's' character, probably a result of a mis-pressed Ctrl-S. ... (check-in: e07e1f662e user: stephan tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/add.c.
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
        caseSensitive = 1;
      }
#else
      caseSensitive = 1;  /* Unix */
#endif
      caseSensitive = db_get_boolean("case-sensitive",caseSensitive);
    }
    if( !caseSensitive ){
      db_must_be_within_tree();
      db_multi_exec(
         "CREATE INDEX IF NOT EXISTS %s.vfile_nocase "
         "  ON vfile(pathname COLLATE nocase)",
         db_name("localdb")
      );
    }
  }







|
<







398
399
400
401
402
403
404
405

406
407
408
409
410
411
412
        caseSensitive = 1;
      }
#else
      caseSensitive = 1;  /* Unix */
#endif
      caseSensitive = db_get_boolean("case-sensitive",caseSensitive);
    }
    if( !caseSensitive && g.localOpen ){

      db_multi_exec(
         "CREATE INDEX IF NOT EXISTS %s.vfile_nocase "
         "  ON vfile(pathname COLLATE nocase)",
         db_name("localdb")
      );
    }
  }