remove limit stanza, see if this helps.

afrisby
Sean Dague 2007-11-14 16:08:10 +00:00
parent 02b6f6ca62
commit ccd08ae3d0
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ namespace OpenSim.DataStore.MonoSqlite
double[,] terret = new double[256,256];
terret.Initialize();
String sql = "select RegionUUID, Revision, Heightfield from terrain" +
" where RegionUUID='" + regionID.ToString() + "' order by Revision desc limit 1";
" where RegionUUID='" + regionID.ToString() + "' order by Revision desc";
using (IDbCommand cmd = conn.CreateCommand())
{