Skip to content

Commit 32d18cf

Browse files
author
Weasley
committed
- oracle等默认表字段大写的数据增加表名称大小写配置,避免大小写表明一起查
- mybatis-orm-support开关优化,当alphahub.dtt.is-enable=false时mybatis-orm-support设置为禁用
1 parent 74fb583 commit 32d18cf

File tree

576 files changed

+132
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

576 files changed

+132
-82
lines changed

README.md

Lines changed: 12 additions & 12 deletions

doc/todo.md

Lines changed: 4 additions & 0 deletions

dtt-spring-boot-starter-tests/dtt-spring-boot-2-x/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.7.3</version>
8+
<version>2.7.5</version>
99
<!--<version>2.3.12.RELEASE</version>-->
1010
<relativePath/>
1111
</parent>
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>io.github.weasley-j</groupId>
5050
<artifactId>dtt-spring-boot-starter</artifactId>
51-
<version>1.3.5</version>
51+
<version>1.3.6</version>
5252
</dependency>
5353
<!-- javadoc-scribe start -->
5454
<dependency>
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
package com.example.domain.dtt;
2+
3+
import cn.alphahub.dtt.plus.annotations.Dtt;
4+
import lombok.Data;
5+
6+
import java.io.Serializable;
7+
8+
/**
9+
* 参数配置表 sys_config
10+
*
11+
* @author ruoyi
12+
*/
13+
@Data
14+
@Dtt("参数配置表")
15+
public class SysConfig implements Serializable {
16+
private static final long serialVersionUID = 1L;
17+
18+
/**
19+
* 参数主键
20+
*/
21+
//@Excel(name = "参数主键", cellType = ColumnType.NUMERIC)
22+
@Dtt(primaryKey = true, value = "参数主键")
23+
private Long configId;
24+
25+
/**
26+
* 参数名称
27+
*/
28+
//@Excel(name = "参数名称")
29+
@Dtt("参数名称")
30+
private String configName;
31+
32+
/**
33+
* 参数键名
34+
*/
35+
//@Excel(name = "参数键名")
36+
@Dtt("参数键名")
37+
private String configKey;
38+
39+
/**
40+
* 参数键值
41+
*/
42+
//@Excel(name = "参数键值")
43+
@Dtt("参数键值")
44+
private String configValue;
45+
46+
/**
47+
* 系统内置(Y是 N否)
48+
*/
49+
//@Excel(name = "系统内置", readConverterExp = "Y=是,N=否")
50+
@Dtt("系统内置")
51+
private String configType;
52+
}

dtt-spring-boot-starter-tests/dtt-spring-boot-2-x/src/main/resources/application-db2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ logging:
77
spring:
88
datasource:
99
driver-class-name: com.ibm.db2.jcc.DB2Driver
10-
url: jdbc:db2://192.168.31.23:50000/testdb
10+
url: jdbc:db2://localhost:50000/testdb
1111
username: weasley
1212
password: 123456
1313

dtt-spring-boot-starter-tests/dtt-spring-boot-2-x/src/main/resources/application-mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ logging:
66
spring:
77
datasource:
88
driver-class-name: com.mysql.cj.jdbc.Driver
9-
url: jdbc:mysql://192.168.31.23:3306/db_demo?serverTimezone=Asia/Shanghai&useSSL=false&allowPublicKeyRetrieval=true&autoReconnect=true&allowMultiQueries=true
9+
url: jdbc:mysql://10.211.55.3:3306/db_demo?serverTimezone=Asia/Shanghai&useSSL=false&allowPublicKeyRetrieval=true&autoReconnect=true&allowMultiQueries=true
1010
username: root
1111
password: 123456
1212

dtt-spring-boot-starter-tests/dtt-spring-boot-3-x/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>io.github.weasley-j</groupId>
4242
<artifactId>dtt-spring-boot-starter</artifactId>
43-
<version>1.3.5</version>
43+
<version>1.3.6</version>
4444
</dependency>
4545
<!-- javadoc-scribe start -->
4646
<dependency>

dtt-spring-boot-starter/pom.xml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.7.3</version>
8+
<version>2.7.5</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111

1212
<groupId>io.github.weasley-j</groupId>
1313
<artifactId>dtt-spring-boot-starter</artifactId>
14-
<version>1.3.5</version>
14+
<version>1.3.6</version>
1515
<name>dtt-spring-boot-starter</name>
1616
<description>
1717
DTT is an object-oriented Java framework that helps developers increase productivity, Domain driven table is the
@@ -49,20 +49,21 @@
4949
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5050
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5151
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
52-
<hutool.version>5.8.5</hutool.version>
52+
<hutool.version>5.8.10</hutool.version>
5353
<commons-io.version>2.11.0</commons-io.version>
5454
<mybatis-plus.version>3.5.2</mybatis-plus.version>
5555
<therapi-runtime-javadoc.version>0.15.0</therapi-runtime-javadoc.version>
5656
<velocity-engine-core.version>2.3</velocity-engine-core.version>
5757
<mybatis-spring.version>2.0.7</mybatis-spring.version>
58-
<mybatis.version>3.5.10</mybatis.version>
58+
<mybatis.version>3.5.11</mybatis.version>
5959
<jsqlparser.version>4.5</jsqlparser.version>
6060
<sonar-maven-plugin.version>3.9.1.2184</sonar-maven-plugin.version>
6161
<!-- deploy start -->
6262
<nexus-staging.version>1.6.13</nexus-staging.version>
6363
<maven-javadoc.version>3.4.0</maven-javadoc.version>
6464
<maven-gpg.version>3.0.1</maven-gpg.version>
6565
<!-- deploy end -->
66+
<snakeyaml.version>1.33</snakeyaml.version>
6667
</properties>
6768

6869
<dependencies>
@@ -89,9 +90,20 @@
8990
<optional>true</optional>
9091
</dependency>
9192
<!-- spring boot starter -->
93+
<dependency>
94+
<groupId>org.yaml</groupId>
95+
<artifactId>snakeyaml</artifactId>
96+
<version>${snakeyaml.version}</version>
97+
</dependency>
9298
<dependency>
9399
<groupId>org.springframework.boot</groupId>
94100
<artifactId>spring-boot-starter</artifactId>
101+
<exclusions>
102+
<exclusion>
103+
<groupId>org.yaml</groupId>
104+
<artifactId>snakeyaml</artifactId>
105+
</exclusion>
106+
</exclusions>
95107
</dependency>
96108
<!--lombok-->
97109
<dependency>

dtt-spring-boot-starter/src/main/java/cn/alphahub/dtt/plus/annotations/Dtt.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package cn.alphahub.dtt.plus.annotations;
22

3-
import javax.validation.Constraint;
43
import java.lang.annotation.Documented;
54
import java.lang.annotation.ElementType;
65
import java.lang.annotation.Inherited;
@@ -50,7 +49,7 @@
5049
* The constraints condition for model of table.
5150
*
5251
* @return constraints condition
53-
* @apiNote It is recommended enabling this property on Class to describe constraints information for the table
52+
* @apiNote It is recommended enabling this property on Class to describe constraints information for tables
5453
* @see Index
5554
* @see UniqueKey
5655
*/

dtt-spring-boot-starter/src/main/java/cn/alphahub/dtt/plus/config/DttMybatisAutoConfiguration.java

Lines changed: 11 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public DttMybatisAutoConfiguration(JdbcTemplate jdbcTemplate,
101101

102102
@Override
103103
public void afterPropertiesSet() {
104+
if (dttProperties.getIsEnable().equals(false)) return;
104105
if (dttMybatisOrmSupportProperties.getIsEnable().equals(false)) return;
105106
this.shardingSphereEnable = isShardingSphereEnable();
106107
sqlSessionFactories.forEach(sqlSessionFactory -> {
@@ -197,44 +198,22 @@ public boolean isTableNotExists(String tableName) {
197198
* @return sql scripts
198199
*/
199200
public List<String> getQueryTableExistsSqlScripts(String tableName, DatabaseType databaseType) {
200-
List<String> sqlScripts = new ArrayList<>(4);
201201
Map<DatabaseType, TableExistsSqlMapperProperties> propertiesMap = dttProperties.getTableExistsSqlMapper();
202202
TableExistsSqlMapperProperties rawSql = propertiesMap.get(databaseType);
203203
if (null == rawSql) return Collections.emptyList();
204204

205-
String lcts = StringUtils.defaultIfBlank(rawSql.getScriptOfLowerCaseTableName(), "");
206-
String usts = StringUtils.defaultIfBlank(rawSql.getScriptOfUpperCaseTableName(), "");
207-
String dbNamePlaceHolder = "${databaseName}";
205+
String realTableName = tableName;
206+
List<String> scripts = new ArrayList<>(4);
208207

209-
switch (databaseType) {
210-
case MYSQL:
211-
case MARIADB:
212-
case SQLSERVER:
213-
case POSTGRESQL:
214-
lcts = lcts.replace("${lowerCaseTableName}", tableName);
215-
if (lcts.contains(dbNamePlaceHolder)) {
216-
lcts = lcts.replace(dbNamePlaceHolder, databaseProperty.getDatabaseName());
217-
}
218-
sqlScripts.add(lcts);
219-
return sqlScripts;
220-
case H2:
221-
case DB2:
222-
case ORACLE:
223-
case DERBY:
224-
case HSQL:
225-
usts = usts.replace("${upperCaseTableName}", tableName.toUpperCase());
226-
if (usts.contains(dbNamePlaceHolder))
227-
usts = usts.replace(dbNamePlaceHolder, databaseProperty.getDatabaseName());
228-
sqlScripts.add(usts);
229-
230-
lcts = lcts.replace("${lowerCaseTableName}", tableName);
231-
if (lcts.contains(dbNamePlaceHolder))
232-
lcts = lcts.replace(dbNamePlaceHolder, databaseProperty.getDatabaseName());
233-
sqlScripts.add(lcts);
208+
if (rawSql.getTablenameUppercase().equals(true)) realTableName = tableName.toUpperCase();
209+
String realScript = StringUtils.defaultIfBlank(rawSql.getScriptForTableExists(), "");
234210

235-
return sqlScripts;
236-
default:
237-
return sqlScripts;
211+
realScript = realScript.replace("${tablename}", realTableName);
212+
if (realScript.contains("${dbname}")) {
213+
realScript = realScript.replace("${dbname}", databaseProperty.getDatabaseName());
238214
}
215+
scripts.add(realScript);
216+
217+
return scripts;
239218
}
240219
}

dtt-spring-boot-starter/src/main/java/cn/alphahub/dtt/plus/config/DttProperties.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -483,25 +483,25 @@ public static class PrecisionConfigurationProperties {
483483
@ConfigurationProperties(prefix = PREFIX + ".table-exists-sql-mapper")
484484
public static class TableExistsSqlMapperProperties {
485485
/**
486-
* The SQL script to query the given table whether exists, the table name format(underline),
486+
* Optional. Take MySQL an example: If a classname is 'DttMember', When 'tablenameUppercase' set to 'false'.<br/>
487+
* The 'scriptForTableExists' will be [SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '${databaseName}' AND TABLE_NAME = 'dtt_member'] Otherwise [SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '${databaseName}' AND TABLE_NAME = 'DTT_MEMBER']<br>
487488
* <p>
488-
* i.e: dtt_member
489+
* i.e: DTT_MEMBER, It's available to set 'tablenameUppercase = true' for getting a tablename with uppercase.
489490
*
491+
* @see DatabaseType#DB2
492+
* @see DatabaseType#H2
493+
* @see DatabaseType#ORACLE
494+
* <p>
495+
* i.e: dtt_member
490496
* @see DatabaseType#MYSQL
491497
* @see DatabaseType#SQLSERVER
492498
* @see DatabaseType#MARIADB
493499
* @see DatabaseType#POSTGRESQL
494500
*/
495-
private String scriptOfLowerCaseTableName;
501+
private Boolean tablenameUppercase = false;
496502
/**
497-
* The SQL script to query the given table whether exists, the table name format(underline), Optional.
498-
* <p>
499-
* i.e: DTT_MEMBER
500-
*
501-
* @see DatabaseType#DB2
502-
* @see DatabaseType#H2
503-
* @see DatabaseType#ORACLE
503+
* The SQL script to query the given table whether exists
504504
*/
505-
private String scriptOfUpperCaseTableName;
505+
private String scriptForTableExists;
506506
}
507507
}

dtt-spring-boot-starter/src/main/java/cn/alphahub/dtt/plus/config/support/MyBatisPlusCodeGeneratorConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ private List<MyBatisPlusCodeWrapper> getMyBatisPlusCodeWrappers(CodeGeneratorPro
189189
*
190190
* @param cgProperties MyBatis-Plus code generation configuration properties
191191
* @param codeWrapper mybatis-plus code wrapper to integrate metadata
192-
* @param templateResource A template resource of velocity'.vm'
192+
* @param templateResource A template resource of velocity '.vm'
193193
* @return The Absolute Filename Of Source Code
194194
*/
195195
private String getAbsoluteFilename(CodeGeneratorProperties cgProperties, MyBatisPlusCodeWrapper codeWrapper, String templateResource) {

dtt-spring-boot-starter/src/main/resources/META-INF/ddt-data-mapper.yml

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -318,25 +318,29 @@ alphahub:
318318
#The properties of sql-script-mapper to query the given table whether exists
319319
table-exists-sql-mapper:
320320
mysql:
321-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '${databaseName}' AND TABLE_NAME = '${lowerCaseTableName}'"
321+
tablename-uppercase: false
322+
script-for-table-exists: "SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '${dbname}' AND TABLE_NAME = '${tablename}'"
322323
oracle:
323-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM USER_TABLES WHERE TABLE_NAME = '${lowerCaseTableName}'"
324-
script-of-upper-case-table-name: "SELECT COUNT(*) FROM USER_TABLES WHERE TABLE_NAME = '${upperCaseTableName}'"
324+
tablename-uppercase: true
325+
script-for-table-exists: "SELECT COUNT(*) FROM USER_TABLES WHERE TABLE_NAME = '${tablename}'"
325326
db2:
326-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM syscat.tables WHERE TABNAME = '${lowerCaseTableName}'"
327-
script-of-upper-case-table-name: "SELECT COUNT(*) FROM syscat.tables WHERE TABNAME = '${upperCaseTableName}'"
327+
tablename-uppercase: true
328+
script-for-table-exists: "SELECT COUNT(*) FROM syscat.tables WHERE TABNAME = '${tablename}'"
328329
sqlserver:
329-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM sys.all_objects WHERE object_id = OBJECT_ID( N'[dbo].[${lowerCaseTableName}]' ) AND type IN ( 'U' )"
330+
tablename-uppercase: false
331+
script-for-table-exists: "SELECT COUNT(*) FROM sys.all_objects WHERE object_id = OBJECT_ID( N'[dbo].[${tablename}]' ) AND type IN ( 'U' )"
330332
mariadb:
331-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '${databaseName}' AND TABLE_NAME = '${lowerCaseTableName}'"
333+
tablename-uppercase: false
334+
script-for-table-exists: "SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = '${dbname}' AND TABLE_NAME = '${tablename}'"
332335
postgresql:
333-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM pg_class WHERE relname = '${lowerCaseTableName}'"
336+
tablename-uppercase: false
337+
script-for-table-exists: "SELECT COUNT(*) FROM pg_class WHERE relname = '${tablename}'"
334338
h2:
335-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM information_schema.tables WHERE table_name = '${lowerCaseTableName}'"
336-
script-of-upper-case-table-name: "SELECT COUNT(*) FROM information_schema.tables WHERE table_name = '${upperCaseTableName}'"
339+
tablename-uppercase: true
340+
script-for-table-exists: "SELECT COUNT(*) FROM information_schema.tables WHERE table_name = '${tablename}'"
337341
hsql:
338-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = '${lowerCaseTableName}'"
339-
script-of-upper-case-table-name: "SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = '${upperCaseTableName}'"
342+
tablename-uppercase: true
343+
script-for-table-exists: "SELECT COUNT(*) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = '${tablename}'"
340344
derby:
341-
script-of-lower-case-table-name: "SELECT COUNT(*) FROM SYS.SYSTABLES WHERE TABLENAME = '${lowerCaseTableName}' AND TABLETYPE = 'T'"
342-
script-of-upper-case-table-name: "SELECT COUNT(*) FROM SYS.SYSTABLES WHERE TABLENAME = '${upperCaseTableName}' AND TABLETYPE = 'T'"
345+
tablename-uppercase: true
346+
script-for-table-exists: "SELECT COUNT(*) FROM SYS.SYSTABLES WHERE TABLENAME = '${tablename}' AND TABLETYPE = 'T'"

embedded-db/derby/db.lck

0 Bytes
Binary file not shown.

embedded-db/derby/log/log.ctrl

0 Bytes
Binary file not shown.
Binary file not shown.

embedded-db/derby/log/logmirror.ctrl

0 Bytes
Binary file not shown.

embedded-db/derby/seg0/c10.dat

0 Bytes
Binary file not shown.

embedded-db/derby/seg0/c1000.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c101.dat

-24 KB
Binary file not shown.

embedded-db/derby/seg0/c1010.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1021.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1040.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1051.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1060.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1070.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1081.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1091.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c10a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c10b0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c10c1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c10d0.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c10e0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c10f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1100.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c111.dat

-24 KB
Binary file not shown.

embedded-db/derby/seg0/c1110.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1120.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1130.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1140.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1151.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1161.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1171.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1181.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1190.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c11b1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c11c1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c11d1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c11f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1201.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c121.dat

-20 KB
Binary file not shown.

embedded-db/derby/seg0/c1211.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1221.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1230.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1240.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1250.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1260.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1271.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1280.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1290.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c12a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c12b1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c12c0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c12d0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c12e0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c12f1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c130.dat

-24 KB
Binary file not shown.

embedded-db/derby/seg0/c1301.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1310.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1320.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1331.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1341.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1351.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1360.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1370.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1381.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1390.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c13a0.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c13b1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c13c0.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c13d0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c13e1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c13f1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1401.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c141.dat

-20 KB
Binary file not shown.

embedded-db/derby/seg0/c1411.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1421.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1430.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1441.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1451.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1460.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1471.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1480.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1490.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c14a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c14b0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c14c1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c14d1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c14e0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c14f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1501.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1511.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1520.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1531.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1540.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1551.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1560.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1571.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1580.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1590.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c15a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c15b0.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c15c0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c15d1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c15e1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c15f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1601.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1610.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1620.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1630.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1641.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1651.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1661.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1671.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1681.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1690.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c16a0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c16b0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c16c0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c16d1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c16e0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c16f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1700.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1711.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1721.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1730.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1741.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1751.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1770.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1781.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1790.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c17a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c17b1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c17d0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c17e0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c17f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c180.dat

0 Bytes
Binary file not shown.

embedded-db/derby/seg0/c1801.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1810.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1821.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1830.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1840.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1851.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1861.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1871.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1881.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1890.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c18a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c18b1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c18c0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c18d0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c18e0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c18f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1900.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1911.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1920.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1931.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1940.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1950.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1960.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1971.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1981.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1991.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c19a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c19b0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c19c1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c19d1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c19e1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c19f0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a00.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a1.dat

0 Bytes
Binary file not shown.

embedded-db/derby/seg0/c1a11.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a20.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1a30.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a41.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a50.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a60.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a70.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a81.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1a91.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1aa1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ab1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ac1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ad1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1af1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b00.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b1.dat

0 Bytes
Binary file not shown.

embedded-db/derby/seg0/c1b11.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b20.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1b31.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b40.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b50.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b60.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b70.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1b80.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1b91.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ba1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1bb0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1bc1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1bd0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1be1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1bf1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1c01.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1c20.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1c30.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1c41.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1c51.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1c70.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1c80.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1c91.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ca0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1cb0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1cc1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1cd1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ce0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1cf1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d01.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d11.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d20.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d30.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d40.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d51.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d60.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d71.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d81.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1d90.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1da0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1db1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1dc0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1dd1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1de1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1df0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e01.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e11.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e20.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e30.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e41.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e51.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e60.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e70.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1e80.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c1e90.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ea0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1eb1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ec1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ed1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ee0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ef0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f01.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f11.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f20.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f31.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f40.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f51.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f60.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f70.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f81.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1f90.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1fa1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1fb1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1fc1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1fd1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1fe0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c1ff0.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c20.dat

-200 KB
Binary file not shown.

embedded-db/derby/seg0/c2000.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2010.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2021.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2030.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2041.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2050.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2061.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2070.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2081.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2090.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c20a1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c20b1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c20c1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c20d0.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c20e0.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c20f1.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2101.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2110.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2121.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2130.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2140.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2150.dat

-64 KB
Binary file not shown.

embedded-db/derby/seg0/c2160.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2171.dat

-8 KB
Binary file not shown.

embedded-db/derby/seg0/c2181.dat

-8 KB
Binary file not shown.

0 commit comments

Comments
 (0)