Check database for root prim IDs only to try and get a handle on prim loss

once and for all.
avinationmerge
Melanie 2012-12-09 23:25:07 +01:00
parent 8aa5fdb6a3
commit 8e6bc55470
1 changed files with 1 additions and 1 deletions

View File

@ -2028,7 +2028,7 @@ namespace OpenSim.Data.MySQL
using (MySqlCommand cmd = dbcon.CreateCommand())
{
cmd.CommandText = "select UUID from prims where RegionUUID = ?RegionUUID";
cmd.CommandText = "select UUID from prims where RegionUUID = ?RegionUUID and SceneGroupID = UUID";
cmd.Parameters.AddWithValue("RegionUUID", regionID.ToString());
using (IDataReader reader = ExecuteReader(cmd))