1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Bug fix in pragma table_info(). (CVS 3440)

FossilOrigin-Name: c037403bae0d78f9dd2703ff05cc3cd3ac54e062
This commit is contained in:
drh
2006-09-25 13:48:30 +00:00
parent 2e584cd250
commit 6f8359865d
3 changed files with 13 additions and 9 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** This file contains code used to implement the PRAGMA command.
**
** $Id: pragma.c,v 1.122 2006/08/14 14:23:42 drh Exp $
** $Id: pragma.c,v 1.123 2006/09/25 13:48:30 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -490,7 +490,11 @@ void sqlite3Pragma(
pCol->zType ? pCol->zType : "", 0);
sqlite3VdbeAddOp(v, OP_Integer, pCol->notNull, 0);
pDflt = pCol->pDflt ? &pCol->pDflt->span : &noDflt;
sqlite3VdbeOp3(v, OP_String8, 0, 0, (char*)pDflt->z, pDflt->n);
if( pDflt->z ){
sqlite3VdbeOp3(v, OP_String8, 0, 0, (char*)pDflt->z, pDflt->n);
}else{
sqlite3VdbeAddOp(v, OP_Null, 0, 0);
}
sqlite3VdbeAddOp(v, OP_Integer, pCol->isPrimKey, 0);
sqlite3VdbeAddOp(v, OP_Callback, 6, 0);
}