diff options
-rwxr-xr-x | test/data/V1997/overflowTestV1997.mdb | bin | 0 -> 65536 bytes | |||
-rwxr-xr-x | test/data/V1997/queryTestV1997.mdb | bin | 0 -> 96256 bytes | |||
-rw-r--r-- | test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java | 2 | ||||
-rw-r--r-- | test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java | 2 |
4 files changed, 2 insertions, 2 deletions
diff --git a/test/data/V1997/overflowTestV1997.mdb b/test/data/V1997/overflowTestV1997.mdb Binary files differnew file mode 100755 index 0000000..bdfb60f --- /dev/null +++ b/test/data/V1997/overflowTestV1997.mdb diff --git a/test/data/V1997/queryTestV1997.mdb b/test/data/V1997/queryTestV1997.mdb Binary files differnew file mode 100755 index 0000000..d644432 --- /dev/null +++ b/test/data/V1997/queryTestV1997.mdb diff --git a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java index 1f993ee..a6d9a17 100644 --- a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java +++ b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java @@ -741,7 +741,7 @@ public class DatabaseTest extends TestCase { public void testOverflow() throws Exception { - for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.OVERFLOW)) { + for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.OVERFLOW, true)) { Database mdb = open(testDB); Table table = mdb.getTable("Table1"); diff --git a/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java b/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java index 0ba3272..73d91b7 100644 --- a/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java +++ b/test/src/java/com/healthmarketscience/jackcess/query/QueryTest.java @@ -200,7 +200,7 @@ public class QueryTest extends TestCase public void testReadQueries() throws Exception { - for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.QUERY)) { + for (final TestDB testDB : TestDB.getSupportedForBasename(Basename.QUERY, true)) { Map<String,String> expectedQueries = new HashMap<String,String>(); expectedQueries.put( "SelectQuery", multiline( |