aboutsummaryrefslogtreecommitdiff
path: root/src/pragma.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2004-06-17 19:04:17 +0000
committerdrh <drh@noemail.net>2004-06-17 19:04:17 +0000
commita2854229224e9e13eab1a9e9031057e6a259c38c (patch)
tree608670e63ac885138ca20be138bbc2d1ac794d2c /src/pragma.c
parentededfd5e83236dfa0359ff8eade6de0c269016ec (diff)
downloadsqlite-a2854229224e9e13eab1a9e9031057e6a259c38c.tar.gz
sqlite-a2854229224e9e13eab1a9e9031057e6a259c38c.zip
Documentation updates in preparation for the release of version 3.0.0. (CVS 1613)
FossilOrigin-Name: 9fb29f7331254b601b71f0fe7d77f91915272dc7
Diffstat (limited to 'src/pragma.c')
-rw-r--r--src/pragma.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pragma.c b/src/pragma.c
index 8a9dabd59..2b5f91ca3 100644
--- a/src/pragma.c
+++ b/src/pragma.c
@@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to implement the PRAGMA command.
**
-** $Id: pragma.c,v 1.45 2004/06/16 12:02:43 danielk1977 Exp $
+** $Id: pragma.c,v 1.46 2004/06/17 19:04:17 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -124,10 +124,12 @@ static int flagPragma(Parse *pParse, const char *zLeft, const char *zRight){
{ "vdbe_trace", SQLITE_VdbeTrace },
{ "sql_trace", SQLITE_SqlTrace },
{ "vdbe_listing", SQLITE_VdbeListing },
+#if 1 /* FIX ME: Remove the following pragmas */
{ "full_column_names", SQLITE_FullColNames },
{ "short_column_names", SQLITE_ShortColNames },
{ "count_changes", SQLITE_CountRows },
{ "empty_result_callbacks", SQLITE_NullCallback },
+#endif
};
int i;
for(i=0; i<sizeof(aPragma)/sizeof(aPragma[0]); i++){