mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
Postgres fixes for uuid type handling
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
This commit is contained in:
committed by
UbitUmarov
parent
cf8778f50f
commit
2494f23538
@@ -134,10 +134,13 @@ namespace OpenSim.Data.PGSQL
|
||||
|
||||
foreach (DataRow row in schemaTable.Rows)
|
||||
{
|
||||
if (row["ColumnName"] != null &&
|
||||
(!m_Fields.ContainsKey(row["ColumnName"].ToString())))
|
||||
m_ColumnNames.Add(row["ColumnName"].ToString());
|
||||
if (row["ColumnName"] == null)
|
||||
continue;
|
||||
|
||||
string col = row["ColumnName"].ToString();
|
||||
|
||||
if (!m_Fields.ContainsKey(col))
|
||||
m_ColumnNames.Add(col);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user