aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/SQLiteRegionData.cs
diff options
context:
space:
mode:
authorHomer Horwitz2008-11-30 22:27:22 +0000
committerHomer Horwitz2008-11-30 22:27:22 +0000
commit96921c402c4341976aed8052446af7119a08aa20 (patch)
tree2d86316050d76eee6c0210aebdf6d61fea3917ad /OpenSim/Data/SQLite/SQLiteRegionData.cs
parentMantis #2716 Null when linking across objects across two regions. (diff)
downloadopensim-SC_OLD-96921c402c4341976aed8052446af7119a08aa20.zip
opensim-SC_OLD-96921c402c4341976aed8052446af7119a08aa20.tar.gz
opensim-SC_OLD-96921c402c4341976aed8052446af7119a08aa20.tar.bz2
opensim-SC_OLD-96921c402c4341976aed8052446af7119a08aa20.tar.xz
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?
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteRegionData.cs')
-rw-r--r--OpenSim/Data/SQLite/SQLiteRegionData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs
index c436205..b4b5ebb 100644
--- a/OpenSim/Data/SQLite/SQLiteRegionData.cs
+++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs
@@ -783,7 +783,7 @@ namespace OpenSim.Data.SQLite
783 783
784 createCol(prims, "UUID", typeof (String)); 784 createCol(prims, "UUID", typeof (String));
785 createCol(prims, "RegionUUID", typeof (String)); 785 createCol(prims, "RegionUUID", typeof (String));
786 createCol(prims, "ParentID", typeof (Int32)); 786 createCol(prims, "ParentID", typeof (UInt32));
787 createCol(prims, "CreationDate", typeof (Int32)); 787 createCol(prims, "CreationDate", typeof (Int32));
788 createCol(prims, "Name", typeof (String)); 788 createCol(prims, "Name", typeof (String));
789 createCol(prims, "SceneGroupID", typeof (String)); 789 createCol(prims, "SceneGroupID", typeof (String));