From 38f2b892486d5155bfae02ff674bdafcacc5051c Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Tue, 13 Jan 2015 21:52:43 +0000 Subject: [PATCH] Revert "Remove misstaken quotes from column selection in PGSQLUserProfilesData.GetUserAppData()" This reverts commit 0794a403783208fa1e137b624317f42ea65fbce7. --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index 48dd4f0a84..18acef6ff4 100644 --- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs @@ -968,8 +968,8 @@ namespace OpenSim.Data.PGSQL string query = string.Empty; query += "SELECT * FROM userdata WHERE "; - query += "UserId = :Id AND "; - query += "TagId = :TagId"; + query += "\"UserId\" = :Id AND "; + query += "\"TagId\" = :TagId"; try {