diff options
author | Geir Nøklebye | 2017-05-22 15:31:39 +0200 |
---|---|---|
committer | UbitUmarov | 2017-05-22 16:24:52 +0100 |
commit | 8f9256ea1c379c313ec4ddf1393d8448ccd74b4d (patch) | |
tree | 427eb689893c7389d1285bf075695a2e6042d51b /OpenSim/Data/PGSQL | |
parent | make sure we drop requests if DoHTTPGruntWork fails (diff) | |
download | opensim-SC-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.zip opensim-SC-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.tar.gz opensim-SC-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.tar.bz2 opensim-SC-8f9256ea1c379c313ec4ddf1393d8448ccd74b4d.tar.xz |
PGSQL: Another missing cast in XInventoryData
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim/Data/PGSQL')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLXInventoryData.cs | 2 |
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)); |