Fossil

Check-in [d38f204d]
Login

Check-in [d38f204d]

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

Overview
Comment:Fix error on "/dir" page: "SQLITE_ERROR: no such table: main.vfile"
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d38f204d3b02815ad648988d28d56cfa1958bfe1
User & Date: joel 2013-04-22 03:50:55
Context
2013-04-23
08:40
Add --limit as alias to --count in "fossil timeline" for consistancy with other commands. Add many short options, like "-a" for "--all" and "-c" for "--closed" (The JSON part already had those) ... (check-in: 8b17c236 user: jan.nijtmans tags: trunk)
2013-04-22
12:29
Merge with trunk, and fix a bug crept in the previous commit ... (check-in: 0ae51a20 user: ashish tags: ashish-ipv6)
03:50
Fix error on "/dir" page: "SQLITE_ERROR: no such table: main.vfile" ... (check-in: d38f204d user: joel tags: trunk)
01:33
Add class hooks to "/dir" pages to allow for filetype-specific styling. ... (check-in: 7ccbf6ee user: joel tags: trunk)
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to src/add.c.

399
400
401
402
403
404
405

406
407
408

409
410
411
412
413
414
415
      }
#else
      caseSensitive = 1;  /* Unix */
#endif
      caseSensitive = db_get_boolean("case-sensitive",caseSensitive);
    }
    if( !caseSensitive ){

      db_multi_exec(
         "CREATE INDEX IF NOT EXISTS vfile_nocase "
         "  ON vfile(pathname COLLATE nocase)"

      );
    }
  }
  return caseSensitive;
}

/*







>

|
|
>







399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
      }
#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")
      );
    }
  }
  return caseSensitive;
}

/*