aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorGeir Nøklebye2017-01-04 21:32:09 +0100
committerMelanie Thielker2017-01-04 21:18:58 +0000
commitaf93822465d8d873b94f536e6e6d8ee5f7f9fdea (patch)
tree2d045cfd75733c1c9bbccf7f39f4c6e6eb56f536 /OpenSim/Data
parentShow details of scene objects with given ownerId. (diff)
downloadopensim-SC_OLD-af93822465d8d873b94f536e6e6d8ee5f7f9fdea.zip
opensim-SC_OLD-af93822465d8d873b94f536e6e6d8ee5f7f9fdea.tar.gz
opensim-SC_OLD-af93822465d8d873b94f536e6e6d8ee5f7f9fdea.tar.bz2
opensim-SC_OLD-af93822465d8d873b94f536e6e6d8ee5f7f9fdea.tar.xz
PGSQL fixed a missing cast to uuid in XInventoryData
Signed-off-by: Melanie Thielker <melanie@t-data.com>
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 c34a8dc..959c2cf 100644
--- a/OpenSim/Data/PGSQL/PGSQLXInventoryData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLXInventoryData.cs
@@ -205,7 +205,7 @@ namespace OpenSim.Data.PGSQL
205*/ 205*/
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"" = :PrincipalID 208 where ""avatarID""::uuid = :PrincipalID
209 and ""assetID"" = :AssetID 209 and ""assetID"" = :AssetID
210 group by ""assetID"" "); 210 group by ""assetID"" ");
211 211