Try to fix Mantis#2727. SQLite seems to be able to store bigger numbers in

an INTEGER column (using 6 bytes), but the mapping was wrong.
Question: Should we move localIDs to int instead of uint to save some bytes?
0.6.1-post-fixes
Homer Horwitz 2008-11-30 22:27:22 +00:00
parent e102ed3ce1
commit 96921c402c
1 changed files with 1 additions and 1 deletions

View File

@ -783,7 +783,7 @@ namespace OpenSim.Data.SQLite
createCol(prims, "UUID", typeof (String));
createCol(prims, "RegionUUID", typeof (String));
createCol(prims, "ParentID", typeof (Int32));
createCol(prims, "ParentID", typeof (UInt32));
createCol(prims, "CreationDate", typeof (Int32));
createCol(prims, "Name", typeof (String));
createCol(prims, "SceneGroupID", typeof (String));