# mysql2 **Repository Path**: heaven022/mysql2 ## Basic Information - **Project Name**: mysql2 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-21 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 第四阶段 大型分布式存储系统架构进阶------模块一:MySQL海量数据存储与优化(下)---作业 ### sharding-jdbc-mysql 是测试主从同步,读写分离分表分库的模块 ### ### 主要代码及注意事项 1.application-sharding-master-slaves.properties 是分库分表读写分离的配置; 2.在test目录下:TestShardingDatabase 是测试该功能的方法 3.c_order.sql是创建两个分表的sql语句 4.在本地数据库构建6个数据库为master0,slave0,slave1,master1,slave2,slave3 ,资源限制没有做主从(新版mac系统virtualbox不能用了,吐槽!!!) 5.需要提前在2个master数据库中创建c_order0和c_order1表 Log: masterSlaveRules: master0: masterDataSourceName: master0 name: master0 slaveDataSourceNames: - slave0 - slave1 master1: masterDataSourceName: master1 name: master1 slaveDataSourceNames: - slave2 - slave3 tables: c_order: actualDataNodes: master$->{0..1}.c_order$->{0..1} databaseStrategy: inline: algorithmExpression: master$->{user_id % 2} shardingColumn: user_id keyGenerator: column: id type: SNOWFLAKE logicTable: c_order tableStrategy: inline: algorithmExpression: c_order$->{id % 2} shardingColumn: id 2020-11-21 10:45:27.989 INFO 32700 --- [ main] o.a.s.core.log.ConfigurationLogger : Properties: sql.show: 'true' 2020-11-21 10:45:27.996 INFO 32700 --- [ main] ShardingSphere-metadata : Loading 1 logic tables' meta data. 2020-11-21 10:45:28.027 INFO 32700 --- [ main] ShardingSphere-metadata : Meta data load finished, cost 38 milliseconds. 2020-11-21 10:45:28.222 INFO 32700 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] 2020-11-21 10:45:28.300 INFO 32700 --- [ main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.12.Final 2020-11-21 10:45:28.443 INFO 32700 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.0.Final} 2020-11-21 10:45:28.566 INFO 32700 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL57Dialect 2020-11-21 10:45:29.079 INFO 32700 --- [ main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] 2020-11-21 10:45:29.086 INFO 32700 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' 2020-11-21 10:45:29.396 INFO 32700 --- [ main] dao.TestShardingDatabase2 : Started TestShardingDatabase2 in 3.318 seconds (JVM running for 4.107) 2020-11-21 10:45:30.057 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: SelectStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.SelectStatement@6c26e588, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@62f73b0c), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@62f73b0c, projectionsContext=ProjectionsContext(startIndex=7, stopIndex=344, distinctRow=false, projections=[ColumnProjection(owner=order0_, name=id, alias=Optional[id1_0_]), ColumnProjection(owner=order0_, name=company_id, alias=Optional[company_2_0_]), ColumnProjection(owner=order0_, name=create_time, alias=Optional[create_t3_0_]), ColumnProjection(owner=order0_, name=is_del, alias=Optional[is_del4_0_]), ColumnProjection(owner=order0_, name=position_id, alias=Optional[position5_0_]), ColumnProjection(owner=order0_, name=publish_user_id, alias=Optional[publish_6_0_]), ColumnProjection(owner=order0_, name=resume_type, alias=Optional[resume_t7_0_]), ColumnProjection(owner=order0_, name=status, alias=Optional[status8_0_]), ColumnProjection(owner=order0_, name=update_time, alias=Optional[update_t9_0_]), ColumnProjection(owner=order0_, name=user_id, alias=Optional[user_id10_0_])]), groupByContext=org.apache.shardingsphere.sql.parser.binder.segment.select.groupby.GroupByContext@7dd2a5f7, orderByContext=org.apache.shardingsphere.sql.parser.binder.segment.select.orderby.OrderByContext@1d45c4b7, paginationContext=org.apache.shardingsphere.sql.parser.binder.segment.select.pagination.PaginationContext@46146832, containsSubquery=false) 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave0 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order0 order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave1 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order1 order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave2 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order0 order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave3 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order1 order0_ 2020-11-21 10:45:30.103 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 1 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.198 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.198 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@43f5b014), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@43f5b014, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.104, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.104, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858874959888384])]) 2020-11-21 10:45:30.198 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.104, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.104, 9, 536858874959888384] 2020-11-21 10:45:30.222 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 2 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.224 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.224 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3e574f9c), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3e574f9c, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.223, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.223, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875287044097])]) 2020-11-21 10:45:30.224 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.223, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.223, 1, 536858875287044097] 2020-11-21 10:45:30.229 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 3 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.231 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.231 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@99948fe), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@99948fe, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.229, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.229, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875312209920])]) 2020-11-21 10:45:30.231 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.229, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.229, 5, 536858875312209920] 2020-11-21 10:45:30.234 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 4 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.236 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.236 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@37823482), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@37823482, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.235, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.235, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875337375745])]) 2020-11-21 10:45:30.236 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.235, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.235, 6, 536858875337375745] 2020-11-21 10:45:30.241 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 5 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.243 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.243 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4769e70c), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4769e70c, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.242, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.242, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875366735872])]) 2020-11-21 10:45:30.243 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.242, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.242, 1, 536858875366735872] 2020-11-21 10:45:30.247 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 6 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.249 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.249 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3b38f032), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3b38f032, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.248, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.248, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875391901697])]) 2020-11-21 10:45:30.250 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.248, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.248, 0, 536858875391901697] 2020-11-21 10:45:30.254 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 7 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.257 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.257 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3ba015b1), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3ba015b1, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.254, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.254, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875421261824])]) 2020-11-21 10:45:30.257 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.254, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.254, 8, 536858875421261824] 2020-11-21 10:45:30.260 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 8 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.262 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.262 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1c0a143), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1c0a143, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.26, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.26, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875442233345])]) 2020-11-21 10:45:30.262 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.26, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.26, 7, 536858875442233345] 2020-11-21 10:45:30.265 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 9 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.267 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.267 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@729de0e1), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@729de0e1, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.266, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.266, 3])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875467399168])]) 2020-11-21 10:45:30.267 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.266, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.266, 3, 536858875467399168] 2020-11-21 10:45:30.271 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 10 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.273 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.273 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2821da0a), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2821da0a, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.271, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.271, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875488370689])]) 2020-11-21 10:45:30.273 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.271, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.271, 7, 536858875488370689] 2020-11-21 10:45:30.277 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 11 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.279 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.279 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6bed434d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6bed434d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.277, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.277, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875513536512])]) 2020-11-21 10:45:30.279 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.277, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.277, 0, 536858875513536512] 2020-11-21 10:45:30.283 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 12 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.285 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.285 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@c194c4e), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@c194c4e, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.283, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.283, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875538702337])]) 2020-11-21 10:45:30.285 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.283, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.283, 0, 536858875538702337] 2020-11-21 10:45:30.289 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 13 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.292 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.292 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@425a5c2e), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@425a5c2e, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.29, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.29, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875568062464])]) 2020-11-21 10:45:30.292 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.29, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.29, 8, 536858875568062464] 2020-11-21 10:45:30.296 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 14 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.298 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.298 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@40625ac6), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@40625ac6, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.296, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.296, 4])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875593228289])]) 2020-11-21 10:45:30.298 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.296, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.296, 4, 536858875593228289] 2020-11-21 10:45:30.302 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 15 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.304 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.304 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@54d9b23a), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@54d9b23a, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.302, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.302, 3])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875618394112])]) 2020-11-21 10:45:30.304 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.302, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.302, 3, 536858875618394112] 2020-11-21 10:45:30.308 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 16 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.311 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.311 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@222dc36c), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@222dc36c, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.308, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.308, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875647754241])]) 2020-11-21 10:45:30.311 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.308, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.308, 1, 536858875647754241] 2020-11-21 10:45:30.315 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 17 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.317 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.317 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@12d8e6b6), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@12d8e6b6, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.315, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.315, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875672920064])]) 2020-11-21 10:45:30.317 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.315, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.315, 6, 536858875672920064] 2020-11-21 10:45:30.321 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 18 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.322 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.322 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@641255d1), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@641255d1, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.321, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.321, 2])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875698085889])]) 2020-11-21 10:45:30.322 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.321, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.321, 2, 536858875698085889] 2020-11-21 10:45:30.326 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 19 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.328 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.328 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3829306d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3829306d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.327, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.327, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875719057408])]) 2020-11-21 10:45:30.328 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.327, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.327, 5, 536858875719057408] 2020-11-21 10:45:30.332 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 20 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.333 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.333 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7b6b8cea), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7b6b8cea, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.332, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.332, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875744223233])]) 2020-11-21 10:45:30.333 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.332, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.332, 9, 536858875744223233] 2020-11-21 10:45:30.337 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 21 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.339 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.339 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5418a659), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5418a659, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.337, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.337, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875765194752])]) 2020-11-21 10:45:30.339 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.337, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.337, 9, 536858875765194752] 2020-11-21 10:45:30.342 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 22 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.343 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.343 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7cf166db), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7cf166db, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.342, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.342, 4])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875786166273])]) 2020-11-21 10:45:30.343 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.342, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.342, 4, 536858875786166273] 2020-11-21 10:45:30.346 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 23 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.348 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.348 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2f3565c0), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2f3565c0, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.347, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.347, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875807137792])]) 2020-11-21 10:45:30.348 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.347, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.347, 7, 536858875807137792] 2020-11-21 10:45:30.351 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 24 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.353 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.353 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@29811d4d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@29811d4d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.352, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.352, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875823915009])]) 2020-11-21 10:45:30.353 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.352, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.352, 5, 536858875823915009] 2020-11-21 10:45:30.355 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 25 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.357 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.357 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@34074149), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@34074149, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.356, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.356, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875840692224])]) 2020-11-21 10:45:30.357 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.356, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.356, 8, 536858875840692224] 2020-11-21 10:45:30.360 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 26 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.362 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.362 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@28d37d43), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@28d37d43, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.36, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.36, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875861663745])]) 2020-11-21 10:45:30.362 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.36, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.36, 7, 536858875861663745] 2020-11-21 10:45:30.365 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 27 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.367 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.367 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@609edb55), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@609edb55, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.366, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.366, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875882635264])]) 2020-11-21 10:45:30.367 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.366, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.366, 0, 536858875882635264] 2020-11-21 10:45:30.371 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 28 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.373 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.373 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1a3a6216), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1a3a6216, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.372, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.372, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875907801089])]) 2020-11-21 10:45:30.373 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.372, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.372, 1, 536858875907801089] 2020-11-21 10:45:30.376 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 29 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.378 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.378 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@193c810), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@193c810, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.377, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.377, 2])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875928772608])]) 2020-11-21 10:45:30.378 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.377, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.377, 2, 536858875928772608] 2020-11-21 10:45:30.381 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 30 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.382 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.382 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6ab6ec33), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6ab6ec33, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.381, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.381, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875949744129])]) 2020-11-21 10:45:30.382 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.381, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.381, 8, 536858875949744129] 2020-11-21 10:45:30.385 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 31 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.387 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.387 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1c96bf1e), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1c96bf1e, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.386, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.386, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875970715648])]) 2020-11-21 10:45:30.387 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.386, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.386, 6, 536858875970715648] 2020-11-21 10:45:30.390 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 32 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.391 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.391 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@36bd07ec), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@36bd07ec, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.39, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.39, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858875987492865])]) 2020-11-21 10:45:30.392 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.39, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.39, 9, 536858875987492865] 2020-11-21 10:45:30.395 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 33 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.397 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.397 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3e0600a4), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3e0600a4, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.396, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.396, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876008464384])]) 2020-11-21 10:45:30.397 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.396, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.396, 9, 536858876008464384] 2020-11-21 10:45:30.400 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 34 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.401 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.401 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6f70015), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6f70015, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.4, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.4, 3])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876029435905])]) 2020-11-21 10:45:30.401 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.4, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.4, 3, 536858876029435905] 2020-11-21 10:45:30.404 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 35 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.406 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.406 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@75c30a4f), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@75c30a4f, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.405, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.405, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876046213120])]) 2020-11-21 10:45:30.406 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.405, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.405, 1, 536858876046213120] 2020-11-21 10:45:30.408 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 36 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.410 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.410 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4eb3b690), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4eb3b690, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.409, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.409, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876062990337])]) 2020-11-21 10:45:30.410 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.409, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.409, 5, 536858876062990337] 2020-11-21 10:45:30.412 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 37 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.414 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.414 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@689fcf08), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@689fcf08, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.413, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.413, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876079767552])]) 2020-11-21 10:45:30.414 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.413, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.413, 9, 536858876079767552] 2020-11-21 10:45:30.416 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 38 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.418 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.418 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1df8e685), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1df8e685, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.417, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.417, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876096544769])]) 2020-11-21 10:45:30.418 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.417, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.417, 7, 536858876096544769] 2020-11-21 10:45:30.420 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 39 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.422 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.422 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5fcff272), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5fcff272, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.421, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.421, 3])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876113321984])]) 2020-11-21 10:45:30.422 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.421, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.421, 3, 536858876113321984] 2020-11-21 10:45:30.424 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 40 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.426 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.426 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@818a514), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@818a514, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.425, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.425, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876130099201])]) 2020-11-21 10:45:30.426 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.425, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.425, 7, 536858876130099201] 2020-11-21 10:45:30.428 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 41 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.430 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.430 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6f076c53), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6f076c53, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.429, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.429, 2])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876146876416])]) 2020-11-21 10:45:30.430 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.429, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.429, 2, 536858876146876416] 2020-11-21 10:45:30.433 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 42 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.434 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.434 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@427c2c96), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@427c2c96, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.433, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.433, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876167847937])]) 2020-11-21 10:45:30.434 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.433, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.433, 6, 536858876167847937] 2020-11-21 10:45:30.437 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 43 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.439 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.439 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3e7da4cb), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3e7da4cb, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.438, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.438, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876188819456])]) 2020-11-21 10:45:30.439 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.438, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.438, 6, 536858876188819456] 2020-11-21 10:45:30.442 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 44 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.444 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.444 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4b9dd787), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4b9dd787, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.442, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.442, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876205596673])]) 2020-11-21 10:45:30.444 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.442, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.442, 1, 536858876205596673] 2020-11-21 10:45:30.447 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 45 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.448 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.448 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@580c4c0b), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@580c4c0b, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.447, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.447, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876226568192])]) 2020-11-21 10:45:30.448 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.447, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.447, 9, 536858876226568192] 2020-11-21 10:45:30.451 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 46 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.452 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.452 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4d204b30), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4d204b30, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.451, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.451, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876243345409])]) 2020-11-21 10:45:30.452 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.451, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.451, 5, 536858876243345409] 2020-11-21 10:45:30.454 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 47 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.456 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.456 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@29088d3d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@29088d3d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.455, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.455, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876255928320])]) 2020-11-21 10:45:30.456 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.455, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.455, 9, 536858876255928320] 2020-11-21 10:45:30.458 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 48 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.459 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.460 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@61d4155b), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@61d4155b, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.459, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.459, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876272705537])]) 2020-11-21 10:45:30.460 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.459, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.459, 0, 536858876272705537] 2020-11-21 10:45:30.463 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 49 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.465 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.465 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@220d7eb7), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@220d7eb7, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.464, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.464, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876293677056])]) 2020-11-21 10:45:30.465 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.464, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.464, 9, 536858876293677056] 2020-11-21 10:45:30.467 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 50 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.469 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.469 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6ff87203), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6ff87203, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.468, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.468, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876310454273])]) 2020-11-21 10:45:30.469 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.468, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.468, 6, 536858876310454273] 2020-11-21 10:45:30.472 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 51 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.473 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.473 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@62f3ad90), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@62f3ad90, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.472, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.472, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876331425792])]) 2020-11-21 10:45:30.473 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.472, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.472, 7, 536858876331425792] 2020-11-21 10:45:30.476 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 52 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.477 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.477 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2c7ac998), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2c7ac998, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.476, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.476, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876348203009])]) 2020-11-21 10:45:30.477 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.476, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.476, 1, 536858876348203009] 2020-11-21 10:45:30.480 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 53 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.481 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.481 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2b0d818d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2b0d818d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.48, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.48, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876364980224])]) 2020-11-21 10:45:30.481 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.48, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.48, 6, 536858876364980224] 2020-11-21 10:45:30.486 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 54 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.487 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.487 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7c928399), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7c928399, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.486, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.486, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876390146049])]) 2020-11-21 10:45:30.487 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.486, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.486, 8, 536858876390146049] 2020-11-21 10:45:30.490 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 55 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.491 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.491 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@15d68a50), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@15d68a50, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.49, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.49, 4])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876406923264])]) 2020-11-21 10:45:30.491 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.49, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.49, 4, 536858876406923264] 2020-11-21 10:45:30.493 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 56 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.494 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.494 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4598961d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4598961d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.494, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.494, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876419506177])]) 2020-11-21 10:45:30.495 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.494, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.494, 0, 536858876419506177] 2020-11-21 10:45:30.497 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 57 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.498 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.498 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5d3a238), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5d3a238, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.497, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.497, 2])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876432089088])]) 2020-11-21 10:45:30.498 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.497, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.497, 2, 536858876432089088] 2020-11-21 10:45:30.500 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 58 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.501 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.501 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@16eb01d4), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@16eb01d4, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.5, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.5, 3])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876448866305])]) 2020-11-21 10:45:30.501 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.5, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.5, 3, 536858876448866305] 2020-11-21 10:45:30.503 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 59 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.504 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.504 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4a5c6b30), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4a5c6b30, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.504, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.504, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876461449216])]) 2020-11-21 10:45:30.505 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.504, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.504, 5, 536858876461449216] 2020-11-21 10:45:30.507 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 60 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.508 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.508 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@68908be7), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@68908be7, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.507, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.507, 2])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876478226433])]) 2020-11-21 10:45:30.508 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.507, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.507, 2, 536858876478226433] 2020-11-21 10:45:30.510 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 61 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.512 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.512 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@175745fc), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@175745fc, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.511, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.511, 4])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876490809344])]) 2020-11-21 10:45:30.512 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.511, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.511, 4, 536858876490809344] 2020-11-21 10:45:30.514 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 62 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.516 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.516 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@83bbab), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@83bbab, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.515, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.515, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876507586561])]) 2020-11-21 10:45:30.516 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.515, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.515, 0, 536858876507586561] 2020-11-21 10:45:30.518 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 63 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.520 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.520 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@26d02dc6), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@26d02dc6, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.519, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.519, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876528558080])]) 2020-11-21 10:45:30.520 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.519, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.519, 6, 536858876528558080] 2020-11-21 10:45:30.523 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 64 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.524 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.524 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@732bb49d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@732bb49d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.523, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.523, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876545335297])]) 2020-11-21 10:45:30.525 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.523, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.523, 5, 536858876545335297] 2020-11-21 10:45:30.528 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 65 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.529 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.529 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4fe9fb65), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4fe9fb65, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.528, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.528, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876566306816])]) 2020-11-21 10:45:30.529 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.528, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.528, 5, 536858876566306816] 2020-11-21 10:45:30.532 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 66 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.533 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.533 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@623a891d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@623a891d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.532, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.532, 3])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876578889729])]) 2020-11-21 10:45:30.533 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.532, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.532, 3, 536858876578889729] 2020-11-21 10:45:30.535 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 67 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.536 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.536 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3d0ce151), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3d0ce151, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.535, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.535, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876591472640])]) 2020-11-21 10:45:30.536 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.535, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.535, 1, 536858876591472640] 2020-11-21 10:45:30.538 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 68 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.539 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.539 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1964ef9), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1964ef9, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.538, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.538, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876608249857])]) 2020-11-21 10:45:30.539 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.538, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.538, 0, 536858876608249857] 2020-11-21 10:45:30.541 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 69 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.542 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.542 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@240e61), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@240e61, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.541, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.541, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876620832768])]) 2020-11-21 10:45:30.542 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.541, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.541, 8, 536858876620832768] 2020-11-21 10:45:30.544 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 70 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.545 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.545 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7151dd9d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7151dd9d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.544, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.544, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876633415681])]) 2020-11-21 10:45:30.545 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.544, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.544, 5, 536858876633415681] 2020-11-21 10:45:30.547 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 71 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.547 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.547 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@41041c31), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@41041c31, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.547, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.547, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876641804288])]) 2020-11-21 10:45:30.548 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.547, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.547, 8, 536858876641804288] 2020-11-21 10:45:30.549 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 72 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.550 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.550 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2eb0932c), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2eb0932c, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.55, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.55, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876654387201])]) 2020-11-21 10:45:30.550 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.55, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.55, 7, 536858876654387201] 2020-11-21 10:45:30.552 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 73 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.553 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.553 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4f9e9c21), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4f9e9c21, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.552, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.552, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876666970112])]) 2020-11-21 10:45:30.553 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.552, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.552, 8, 536858876666970112] 2020-11-21 10:45:30.555 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 74 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.556 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.556 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4f2b1a2f), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4f2b1a2f, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.555, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.555, 4])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876679553025])]) 2020-11-21 10:45:30.556 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.555, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.555, 4, 536858876679553025] 2020-11-21 10:45:30.558 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 75 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.559 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.559 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3c7787a7), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3c7787a7, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.558, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.558, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876687941632])]) 2020-11-21 10:45:30.559 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.558, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.558, 0, 536858876687941632] 2020-11-21 10:45:30.560 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 76 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.561 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.562 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3358805a), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@3358805a, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.561, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.561, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876700524545])]) 2020-11-21 10:45:30.562 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.561, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.561, 7, 536858876700524545] 2020-11-21 10:45:30.564 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 77 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.565 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.565 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@258291de), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@258291de, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.564, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.564, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876713107456])]) 2020-11-21 10:45:30.565 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.564, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.564, 9, 536858876713107456] 2020-11-21 10:45:30.567 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 78 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.568 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.568 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@77d42ed7), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@77d42ed7, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.567, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.567, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876729884673])]) 2020-11-21 10:45:30.568 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.567, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.567, 5, 536858876729884673] 2020-11-21 10:45:30.570 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 79 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.571 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.571 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@133d0471), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@133d0471, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.57, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.57, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876742467584])]) 2020-11-21 10:45:30.571 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.57, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.57, 6, 536858876742467584] 2020-11-21 10:45:30.574 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 80 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.575 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.575 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2330c995), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@2330c995, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.574, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.574, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876755050497])]) 2020-11-21 10:45:30.575 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.574, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.574, 0, 536858876755050497] 2020-11-21 10:45:30.577 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 81 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.578 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.578 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4c81e7c2), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4c81e7c2, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.577, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.577, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876771827712])]) 2020-11-21 10:45:30.578 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.577, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.577, 1, 536858876771827712] 2020-11-21 10:45:30.580 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 82 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.581 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.581 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@285ac29), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@285ac29, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.581, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.581, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876784410625])]) 2020-11-21 10:45:30.582 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.581, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.581, 1, 536858876784410625] 2020-11-21 10:45:30.584 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 83 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.585 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.585 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@70fe33fa), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@70fe33fa, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.584, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.584, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876801187840])]) 2020-11-21 10:45:30.585 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.584, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.584, 9, 536858876801187840] 2020-11-21 10:45:30.587 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 84 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.589 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.589 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1f2d0ca2), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1f2d0ca2, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.588, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.588, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876813770753])]) 2020-11-21 10:45:30.589 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.588, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.588, 8, 536858876813770753] 2020-11-21 10:45:30.591 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 85 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.592 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.592 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@267309f7), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@267309f7, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.591, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.591, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876830547968])]) 2020-11-21 10:45:30.593 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.591, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.591, 1, 536858876830547968] 2020-11-21 10:45:30.595 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 86 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.596 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.596 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@51ac72f7), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@51ac72f7, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.595, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.595, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876847325185])]) 2020-11-21 10:45:30.596 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.595, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.595, 8, 536858876847325185] 2020-11-21 10:45:30.599 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 87 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.600 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.600 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@37f0fb02), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@37f0fb02, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.599, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.599, 5])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876864102400])]) 2020-11-21 10:45:30.600 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.599, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.599, 5, 536858876864102400] 2020-11-21 10:45:30.602 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 88 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.603 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.603 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5de6c7d7), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5de6c7d7, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.602, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.602, 9])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876876685313])]) 2020-11-21 10:45:30.603 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.602, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.602, 9, 536858876876685313] 2020-11-21 10:45:30.605 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 89 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.607 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.607 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@363d29dd), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@363d29dd, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.606, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.606, 1])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876889268224])]) 2020-11-21 10:45:30.607 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.606, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.606, 1, 536858876889268224] 2020-11-21 10:45:30.609 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 90 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.610 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.610 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1f5a1ad4), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1f5a1ad4, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.609, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.609, 8])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876906045441])]) 2020-11-21 10:45:30.610 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.609, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.609, 8, 536858876906045441] 2020-11-21 10:45:30.612 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 91 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.613 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.613 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@213bd66a), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@213bd66a, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.612, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.612, 7])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876918628352])]) 2020-11-21 10:45:30.613 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.612, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.612, 7, 536858876918628352] 2020-11-21 10:45:30.616 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 92 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.617 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.617 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1188e08b), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@1188e08b, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.616, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.616, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876931211265])]) 2020-11-21 10:45:30.617 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.616, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.616, 6, 536858876931211265] 2020-11-21 10:45:30.619 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 93 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.620 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.620 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@52a8f789), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@52a8f789, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.619, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.619, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876943794176])]) 2020-11-21 10:45:30.620 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.619, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.619, 6, 536858876943794176] 2020-11-21 10:45:30.622 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 94 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.623 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.623 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5cf39df6), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@5cf39df6, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.622, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.622, 2])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876960571393])]) 2020-11-21 10:45:30.623 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.622, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.622, 2, 536858876960571393] 2020-11-21 10:45:30.625 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 95 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.626 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.626 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4cd7128), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@4cd7128, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.625, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.625, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876973154304])]) 2020-11-21 10:45:30.626 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.625, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.625, 0, 536858876973154304] 2020-11-21 10:45:30.629 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 96 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.630 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.630 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@19b33b0d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@19b33b0d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.629, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.629, 2])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858876985737217])]) 2020-11-21 10:45:30.630 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.629, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.629, 2, 536858876985737217] 2020-11-21 10:45:30.632 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 97 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.633 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.634 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6df4d8f1), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@6df4d8f1, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.633, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.633, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858877002514432])]) 2020-11-21 10:45:30.634 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.633, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.633, 6, 536858877002514432] 2020-11-21 10:45:30.636 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 98 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.638 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.638 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7916568d), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@7916568d, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.637, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.637, 6])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858877019291649])]) 2020-11-21 10:45:30.638 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.637, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.637, 6, 536858877019291649] 2020-11-21 10:45:30.640 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 99 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.641 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.641 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@a5df98c), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@a5df98c, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.64, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.64, 3])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858877036068864])]) 2020-11-21 10:45:30.641 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master1 ::: insert into c_order0 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.64, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.64, 3, 536858877036068864] 2020-11-21 10:45:30.644 INFO 32700 --- [ main] o.s.t.c.junit4.statements.SpringRepeat : Repetition 100 of test TestShardingDatabase2#testInsertDB_TB() 2020-11-21 10:45:30.645 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: insert into c_order (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?) 2020-11-21 10:45:30.645 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: InsertStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.InsertStatement@5978ba12, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@30dd23e2), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@30dd23e2, columnNames=[company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id], insertValueContexts=[InsertValueContext(parametersCount=9, valueExpressions=[ParameterMarkerExpressionSegment(startIndex=135, stopIndex=135, parameterMarkerIndex=0), ParameterMarkerExpressionSegment(startIndex=138, stopIndex=138, parameterMarkerIndex=1), ParameterMarkerExpressionSegment(startIndex=141, stopIndex=141, parameterMarkerIndex=2), ParameterMarkerExpressionSegment(startIndex=144, stopIndex=144, parameterMarkerIndex=3), ParameterMarkerExpressionSegment(startIndex=147, stopIndex=147, parameterMarkerIndex=4), ParameterMarkerExpressionSegment(startIndex=150, stopIndex=150, parameterMarkerIndex=5), ParameterMarkerExpressionSegment(startIndex=153, stopIndex=153, parameterMarkerIndex=6), ParameterMarkerExpressionSegment(startIndex=156, stopIndex=156, parameterMarkerIndex=7), ParameterMarkerExpressionSegment(startIndex=159, stopIndex=159, parameterMarkerIndex=8), DerivedParameterMarkerExpressionSegment(super=ParameterMarkerExpressionSegment(startIndex=0, stopIndex=0, parameterMarkerIndex=9))], parameters=[2222, 2020-11-21 10:45:30.644, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.644, 0])], generatedKeyContext=Optional[GeneratedKeyContext(columnName=id, generated=true, generatedValues=[536858877048651777])]) 2020-11-21 10:45:30.645 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: master0 ::: insert into c_order1 (company_id, create_time, is_del, position_id, publish_user_id, resume_type, status, update_time, user_id, id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ::: [2222, 2020-11-21 10:45:30.644, false, 3242342, 1111, 1, AUTO, 2020-11-21 10:45:30.644, 0, 536858877048651777] 2020-11-21 10:45:30.650 INFO 32700 --- [extShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default' 2020-11-21 10:45:30.651 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated... 2020-11-21 10:45:30.664 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed. 2020-11-21 10:45:30.664 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Shutdown initiated... 2020-11-21 10:45:30.667 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Shutdown completed. 2020-11-21 10:45:30.667 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Shutdown initiated... 2020-11-21 10:45:30.668 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Shutdown completed. 2020-11-21 10:45:30.668 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-4 - Shutdown initiated... 2020-11-21 10:45:30.669 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-4 - Shutdown completed. 2020-11-21 10:45:30.669 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-5 - Shutdown initiated... 2020-11-21 10:45:30.670 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-5 - Shutdown completed. 2020-11-21 10:45:30.670 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-6 - Shutdown initiated... 2020-11-21 10:45:30.672 INFO 32700 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-6 - Shutdown completed. Log: 2020-11-21 10:45:30.057 INFO 32700 --- [ main] ShardingSphere-SQL : Logic SQL: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : SQLStatement: SelectStatementContext(super=CommonSQLStatementContext(sqlStatement=org.apache.shardingsphere.sql.parser.sql.statement.dml.SelectStatement@6c26e588, tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@62f73b0c), tablesContext=org.apache.shardingsphere.sql.parser.binder.segment.table.TablesContext@62f73b0c, projectionsContext=ProjectionsContext(startIndex=7, stopIndex=344, distinctRow=false, projections=[ColumnProjection(owner=order0_, name=id, alias=Optional[id1_0_]), ColumnProjection(owner=order0_, name=company_id, alias=Optional[company_2_0_]), ColumnProjection(owner=order0_, name=create_time, alias=Optional[create_t3_0_]), ColumnProjection(owner=order0_, name=is_del, alias=Optional[is_del4_0_]), ColumnProjection(owner=order0_, name=position_id, alias=Optional[position5_0_]), ColumnProjection(owner=order0_, name=publish_user_id, alias=Optional[publish_6_0_]), ColumnProjection(owner=order0_, name=resume_type, alias=Optional[resume_t7_0_]), ColumnProjection(owner=order0_, name=status, alias=Optional[status8_0_]), ColumnProjection(owner=order0_, name=update_time, alias=Optional[update_t9_0_]), ColumnProjection(owner=order0_, name=user_id, alias=Optional[user_id10_0_])]), groupByContext=org.apache.shardingsphere.sql.parser.binder.segment.select.groupby.GroupByContext@7dd2a5f7, orderByContext=org.apache.shardingsphere.sql.parser.binder.segment.select.orderby.OrderByContext@1d45c4b7, paginationContext=org.apache.shardingsphere.sql.parser.binder.segment.select.pagination.PaginationContext@46146832, containsSubquery=false) 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave0 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order0 order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave1 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order1 order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave2 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order0 order0_ 2020-11-21 10:45:30.058 INFO 32700 --- [ main] ShardingSphere-SQL : Actual SQL: slave3 ::: select order0_.id as id1_0_, order0_.company_id as company_2_0_, order0_.create_time as create_t3_0_, order0_.is_del as is_del4_0_, order0_.position_id as position5_0_, order0_.publish_user_id as publish_6_0_, order0_.resume_type as resume_t7_0_, order0_.status as status8_0_, order0_.update_time as update_t9_0_, order0_.user_id as user_id10_0_ from c_order1 order0_