diff options
author | Sean Dague | 2008-09-24 20:43:32 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-24 20:43:32 +0000 |
commit | 639267133562c5d71a988fd222c93275887bcb8f (patch) | |
tree | ff7c5b1471eee391d8cc05687c7148a5dcdb8d3d /OpenSim/Data/MySQL/MySQLAssetData.cs | |
parent | remove a bunch of out of date inline ALTER table commands that would only (diff) | |
download | opensim-SC-639267133562c5d71a988fd222c93275887bcb8f.zip opensim-SC-639267133562c5d71a988fd222c93275887bcb8f.tar.gz opensim-SC-639267133562c5d71a988fd222c93275887bcb8f.tar.bz2 opensim-SC-639267133562c5d71a988fd222c93275887bcb8f.tar.xz |
let the asset tests run on MySQL. Interesting difference here, the
sqlite driver can handle .Data = Null, the mysql driver can not. We
should decide which is the right behavior and adjust code for it.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLAssetData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/MySQL/MySQLAssetData.cs b/OpenSim/Data/MySQL/MySQLAssetData.cs index 5c58a4b..e270b9c 100644 --- a/OpenSim/Data/MySQL/MySQLAssetData.cs +++ b/OpenSim/Data/MySQL/MySQLAssetData.cs | |||
@@ -40,7 +40,7 @@ namespace OpenSim.Data.MySQL | |||
40 | /// <summary> | 40 | /// <summary> |
41 | /// A MySQL Interface for the Asset Server | 41 | /// A MySQL Interface for the Asset Server |
42 | /// </summary> | 42 | /// </summary> |
43 | internal class MySQLAssetData : AssetDataBase | 43 | public class MySQLAssetData : AssetDataBase |
44 | { | 44 | { |
45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 45 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 46 | ||