|
1 | 1 | /*
|
2 |
| - * Copyright 2019-2021 the original author or authors. |
| 2 | + * Copyright 2019-2022 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
|
16 | 16 |
|
17 | 17 | package org.h2;
|
18 | 18 |
|
19 |
| -import org.h2.mvstore.db.MVTableEngine; |
20 |
| -import org.h2.store.fs.FilePathAsync; |
21 |
| -import org.h2.store.fs.FilePathDisk; |
22 |
| -import org.h2.store.fs.FilePathMem; |
23 |
| -import org.h2.store.fs.FilePathNio; |
24 |
| -import org.h2.store.fs.FilePathNioMapped; |
25 |
| -import org.h2.store.fs.FilePathNioMem; |
26 |
| -import org.h2.store.fs.FilePathRetryOnInterrupt; |
27 |
| -import org.h2.store.fs.FilePathSplit; |
28 |
| -import org.h2.store.fs.FilePathZip; |
| 19 | +import org.h2.store.fs.async.FilePathAsync; |
| 20 | +import org.h2.store.fs.disk.FilePathDisk; |
| 21 | +import org.h2.store.fs.mem.FilePathMem; |
| 22 | +import org.h2.store.fs.niomapped.FilePathNioMapped; |
| 23 | +import org.h2.store.fs.niomem.FilePathNioMem; |
| 24 | +import org.h2.store.fs.retry.FilePathRetryOnInterrupt; |
| 25 | +import org.h2.store.fs.split.FilePathSplit; |
| 26 | +import org.h2.store.fs.zip.FilePathZip; |
| 27 | + |
29 | 28 | import org.springframework.nativex.hint.InitializationHint;
|
30 | 29 | import org.springframework.nativex.hint.InitializationTime;
|
31 | 30 | import org.springframework.nativex.hint.NativeHint;
|
|
38 | 37 | FilePathMem.class,
|
39 | 38 | FilePathNioMem.class,
|
40 | 39 | FilePathSplit.class,
|
41 |
| - FilePathNio.class, |
| 40 | + FilePathNioMem.class, |
42 | 41 | FilePathNioMapped.class,
|
43 | 42 | FilePathAsync.class,
|
44 | 43 | FilePathZip.class,
|
45 |
| - FilePathRetryOnInterrupt.class, |
46 |
| - MVTableEngine.class |
| 44 | + FilePathRetryOnInterrupt.class |
47 | 45 | }, typeNames= { "org.h2.store.fs.FilePathMemLZF","org.h2.store.fs.FilePathNioMemLZF" }),
|
48 | 46 | initialization = @InitializationHint(types = org.h2.util.Bits.class, initTime = InitializationTime.BUILD)
|
49 | 47 | )
|
|
0 commit comments