aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
authorMelanie2012-06-07 22:39:03 +0200
committerMelanie2012-06-07 22:39:03 +0200
commit26c5b329886e3bbf81e2c853ef2fc6d648ad5273 (patch)
treeb19ea7eef37fd74dfd79f5c17ab8513462add2b4 /OpenSim/Tests
parentImplement playing of the real collision sounds, change scaling for avatar (diff)
downloadopensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.zip
opensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.gz
opensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.bz2
opensim-SC_OLD-26c5b329886e3bbf81e2c853ef2fc6d648ad5273.tar.xz
Add the ability to query the MYSQL databse for a list of the stored prim UUIDs
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs
index 579d41c..38fbbe3 100644
--- a/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs
+++ b/OpenSim/Tests/Common/Mock/MockRegionDataPlugin.cs
@@ -112,6 +112,11 @@ namespace OpenSim.Data.Null
112 { 112 {
113 m_store.StoreRegionWindlightSettings(wl); 113 m_store.StoreRegionWindlightSettings(wl);
114 } 114 }
115
116 public UUID[] GetObjectIDs(UUID regionID)
117 {
118 return new UUID[0];
119 }
115 } 120 }
116 121
117 /// <summary> 122 /// <summary>
@@ -285,5 +290,10 @@ namespace OpenSim.Data.Null
285 public void Shutdown() 290 public void Shutdown()
286 { 291 {
287 } 292 }
293
294 public UUID[] GetObjectIDs(UUID regionID)
295 {
296 return new UUID[0];
297 }
288 } 298 }
289} 299}