aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorGeir Nøklebye2017-05-22 15:31:39 +0200
committerUbitUmarov2017-05-22 16:24:52 +0100
commit8f9256ea1c379c313ec4ddf1393d8448ccd74b4d (patch)
tree427eb689893c7389d1285bf075695a2e6042d51b /OpenSim/Data
parentmake sure we drop requests if DoHTTPGruntWork fails (diff)
downloadopensim-SC_OLD-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.zip
opensim-SC_OLD-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.tar.gz
opensim-SC_OLD-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.tar.bz2
opensim-SC_OLD-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.tar.xz
PGSQL: Another missing cast in XInventoryData
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLXInventoryData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLXInventoryData.cs b/OpenSim/Data/PGSQL/PGSQLXInventoryData.cs
index 55a1996..4c10ac9 100644
--- a/OpenSim/Data/PGSQL/PGSQLXInventoryData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLXInventoryData.cs
@@ -206,7 +206,7 @@ namespace OpenSim.Data.PGSQL
206 cmd.CommandText = String.Format(@"select bit_or(""inventoryCurrentPermissions"") as ""inventoryCurrentPermissions"" 206 cmd.CommandText = String.Format(@"select bit_or(""inventoryCurrentPermissions"") as ""inventoryCurrentPermissions""
207 from inventoryitems 207 from inventoryitems
208 where ""avatarID""::uuid = :PrincipalID 208 where ""avatarID""::uuid = :PrincipalID
209 and ""assetID"" = :AssetID 209 and ""assetID""::uuid = :AssetID
210 group by ""assetID"" "); 210 group by ""assetID"" ");
211 211
212 cmd.Parameters.Add(m_database.CreateParameter("PrincipalID", principalID)); 212 cmd.Parameters.Add(m_database.CreateParameter("PrincipalID", principalID));