Differences From Artifact [ffdb59ade9]:
- File src/report.c — part of check-in [27ef534d48] at 2014-01-18 17:01:33 on branch trunk — Update the built-in SQLite to the 3.8.3 beta that includes support for common table expressions and recursive queries. (user: drh size: 37864)
To Artifact [0644dc0e11]:
- File src/report.c — part of check-in [7e9633a9b3] at 2014-01-20 13:08:26 on branch trunk — Allow fossil to be used together with SQLite 3.8.2 amalgamation. Add UTF16-be file for test-purposes. Disable (3-way) merge2 tests which use UTF16 files: 3-way merges with UTF16 files is not (yet) implemented. (user: jan.nijtmans size: 37938) [more...]
| ︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + + + + |
#include "config.h"
#include <time.h>
#include "report.h"
#include <assert.h>
/* Forward references to static routines */
static void report_format_hints(void);
#ifndef SQLITE_RECURSIVE
# define SQLITE_RECURSIVE 33
#endif
/*
** WEBPAGE: /reportlist
*/
void view_list(void){
const char *zScript;
Blob ril; /* Report Item List */
|
| ︙ |