mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Fix a bug in the showdb utility: the serial types for BLOB and TEXT where
reversed. FossilOrigin-Name: 65a13faf1e3cd18f3459cd410f65d334cfa7c376
This commit is contained in:
@ -227,7 +227,7 @@ static int describeContent(
|
||||
sprintf(zDesc, "1");
|
||||
}else if( x>=12 ){
|
||||
int size = (x-12)/2;
|
||||
if( x&1 ){
|
||||
if( (x&1)==0 ){
|
||||
sprintf(zDesc, "blob(%d)", size);
|
||||
}else{
|
||||
sprintf(zDesc, "text(%d)", size);
|
||||
|
Reference in New Issue
Block a user