diff options
Diffstat (limited to 'OpenSim/Data/SQLite/SQLiteRegionData.cs')
-rw-r--r-- | OpenSim/Data/SQLite/SQLiteRegionData.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Data/SQLite/SQLiteRegionData.cs b/OpenSim/Data/SQLite/SQLiteRegionData.cs index 7f929a8..fce98a2 100644 --- a/OpenSim/Data/SQLite/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLite/SQLiteRegionData.cs | |||
@@ -404,13 +404,12 @@ namespace OpenSim.Data.SQLite | |||
404 | DataTable shapes = ds.Tables["primshapes"]; | 404 | DataTable shapes = ds.Tables["primshapes"]; |
405 | 405 | ||
406 | string byRegion = "RegionUUID = '" + Util.ToRawUuidString(regionUUID) + "'"; | 406 | string byRegion = "RegionUUID = '" + Util.ToRawUuidString(regionUUID) + "'"; |
407 | string orderByParent = "ParentID ASC"; | ||
408 | 407 | ||
409 | lock (ds) | 408 | lock (ds) |
410 | { | 409 | { |
411 | DataRow[] primsForRegion = prims.Select(byRegion, orderByParent); | 410 | DataRow[] primsForRegion = prims.Select(byRegion); |
412 | m_log.Info("[REGION DB]: " + | 411 | m_log.Info("[REGION DB]: Loaded " + primsForRegion.Length + " prims for region: " + regionUUID); |
413 | "Loaded " + primsForRegion.Length + " prims for region: " + regionUUID); | 412 | |
414 | // First, create all groups | 413 | // First, create all groups |
415 | foreach (DataRow primRow in primsForRegion) | 414 | foreach (DataRow primRow in primsForRegion) |
416 | { | 415 | { |