diff options
author | Justin Clark-Casey (justincc) | 2014-11-28 00:27:13 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-11-28 00:27:13 +0000 |
commit | d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd (patch) | |
tree | 745f9e4e150ccc1d1e81ee04ebda5fa46a5ed1b8 /OpenSim/Data/Tests/InventoryTests.cs | |
parent | Stop writing SizeZ config parameter for now when creating regions from consol... (diff) | |
download | opensim-SC-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.zip opensim-SC-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.tar.gz opensim-SC-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.tar.bz2 opensim-SC-d9f7aa41c100ebbc8a9f817ec4d4e247b2bd27fd.tar.xz |
Remove unmaintained MSSQL support.
This has not been maintained for more than 2 years, is unimplemented for newer features (e.g. built-in groups) and has no core developers using it.
If somebody fixes these issues then it could be reinstated.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/Tests/InventoryTests.cs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/OpenSim/Data/Tests/InventoryTests.cs b/OpenSim/Data/Tests/InventoryTests.cs index 5b6b61b..3edf89d 100644 --- a/OpenSim/Data/Tests/InventoryTests.cs +++ b/OpenSim/Data/Tests/InventoryTests.cs | |||
@@ -39,9 +39,6 @@ using System.Data.Common; | |||
39 | using MySql.Data.MySqlClient; | 39 | using MySql.Data.MySqlClient; |
40 | using OpenSim.Data.MySQL; | 40 | using OpenSim.Data.MySQL; |
41 | 41 | ||
42 | using System.Data.SqlClient; | ||
43 | using OpenSim.Data.MSSQL; | ||
44 | |||
45 | using Mono.Data.Sqlite; | 42 | using Mono.Data.Sqlite; |
46 | using OpenSim.Data.SQLite; | 43 | using OpenSim.Data.SQLite; |
47 | 44 | ||
@@ -57,11 +54,6 @@ namespace OpenSim.Data.Tests | |||
57 | { | 54 | { |
58 | } | 55 | } |
59 | 56 | ||
60 | [TestFixture(Description = "Inventory store tests (MS SQL Server)")] | ||
61 | public class MSSQLInventoryTests : InventoryTests<SqlConnection, MSSQLInventoryData> | ||
62 | { | ||
63 | } | ||
64 | |||
65 | public class InventoryTests<TConn, TInvStore> : BasicDataServiceTest<TConn, TInvStore> | 57 | public class InventoryTests<TConn, TInvStore> : BasicDataServiceTest<TConn, TInvStore> |
66 | where TConn : DbConnection, new() | 58 | where TConn : DbConnection, new() |
67 | where TInvStore : class, IInventoryDataPlugin, new() | 59 | where TInvStore : class, IInventoryDataPlugin, new() |