stqf opened a new issue, #31105: URL: https://github.com/apache/shardingsphere/issues/31105
## Bug Report ### Development environment  application.yml ```yml server: port: 15086 spring: shardingsphere: enabled: true mode: type: Standalone props: sql-show: true sql-simple: true kernel-executor-size: 8 database: name: amps datasource: names: amps amps: username: root password: ******* jdbc-url: jdbc:mysql://127.0.0.1:3306/amps?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8 type: com.zaxxer.hikari.HikariDataSource poolName: HikariPool minPoolSize: 4 maxPoolSize: 8 maxLifetimeMilliseconds: 120000 rules: sharding: tables: asm_hist: logic-table: tbl_esm_hist actual-data-nodes: amps.tbl_esm_hist database-strategy: none: table-strategy: standard: sharding-column: 'ts' sharding-algorithm-name: asm_hist_algo #default-database-strategy: # none: #default-table-strategy: # none: sharding-algorithms: asm_hist_algo: type: CLASS_BASED props: strategy: standard algorithmClassName: com.anian.amps.swm.alpha.handler.EventStandardShardingHandler ``` EventStandardShardingHandler.java  main  logger  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
