AlbertTao opened a new issue #2241: Left join get more data then expected
URL: https://github.com/apache/incubator-shardingsphere/issues/2241
 
 
   ## Left Join Get more data then expected
   
   When execute sql as follow :
   
   ```mysql
   select td.*, tda.* from ts_order td left join ts_order_address tda on td.id 
= tda.order_id where td.id = 1
   ```
   
   Get more data then expected.
   
   ### Which version of ShardingSphere did you use?
   
   4.0.0-RC1
   
   ### Which project did you use? Sharding-JDBC or Sharding-Proxy?
   Sharding-JDBC
   ### Expected behavior
   
   ```txt
   ------------------------------------------------------------
   id                  id                  order_id            address          
   
   1                   1                   1                   china            
   
   ```
   
   
   
   ### Actual behavior
   
   ```txt
   ------------------------------------------------------------
   id                  id                  order_id            address          
   
   1                   1                   1                   china            
   
   1                   null                null                null  
   ```
   
   ### Reason analyze (If you can)
   
   ### Steps to reproduce the behavior, such as: SQL to execute, sharding rule 
configuration, when exception occur etc.
   
   **Dependency**
   
   ```xml
          <dependency>
                  <groupId>com.alibaba</groupId>
                  <artifactId>druid</artifactId>
                  <version>1.0.9</version>
          </dependency>
   
          <dependency>
                  <groupId>org.apache.shardingsphere</groupId>
                  <artifactId>sharding-jdbc-core</artifactId>
                  <version>4.0.0-RC1</version>
          </dependency>
   ```
   
   **SQL**
   
   ```sql
   -- prepare schemas
   create database test_d_0;
   create database test_d_1;
   
   -- prepare tables
   -- prepare table ts_order
   CREATE TABLE test_d_0.`ts_order_0000` (`id` BIGINT NOT NULL 
AUTO_INCREMENT,PRIMARY KEY (`id`));
   CREATE TABLE test_d_0.`ts_order_0001` (`id` BIGINT NOT NULL 
AUTO_INCREMENT,PRIMARY KEY (`id`));
   CREATE TABLE test_d_1.`ts_order_0002` (`id` BIGINT NOT NULL 
AUTO_INCREMENT,PRIMARY KEY (`id`));
   CREATE TABLE test_d_1.`ts_order_0003` (`id` BIGINT NOT NULL 
AUTO_INCREMENT,PRIMARY KEY (`id`));
   -- prepare table ts_order_address
   CREATE TABLE `test_d_0`.`ts_order_address_0000` ( `id` BIGINT NOT NULL 
AUTO_INCREMENT, `order_id` BIGINT NOT NULL, `address` VARCHAR(255) NULL, 
PRIMARY KEY (`id`));
   CREATE TABLE `test_d_0`.`ts_order_address_0001` ( `id` BIGINT NOT NULL 
AUTO_INCREMENT, `order_id` BIGINT NOT NULL, `address` VARCHAR(255) NULL, 
PRIMARY KEY (`id`));
   CREATE TABLE `test_d_1`.`ts_order_address_0002` ( `id` BIGINT NOT NULL 
AUTO_INCREMENT, `order_id` BIGINT NOT NULL, `address` VARCHAR(255) NULL, 
PRIMARY KEY (`id`));
   CREATE TABLE `test_d_1`.`ts_order_address_0003` ( `id` BIGINT NOT NULL 
AUTO_INCREMENT, `order_id` BIGINT NOT NULL, `address` VARCHAR(255) NULL, 
PRIMARY KEY (`id`));
   
   -- prepare init data
   INSERT INTO `test_d_0`.`ts_order_0001` (`id`) VALUES ('1');
   INSERT INTO `test_d_0`.`ts_order_address_0001` (`id`, `order_id`, `address`) 
VALUES ('1', '1', 'china');
   ```
   
   **Java Code**
   
   ```java
   // ignore package and import
   
   public class LeftJoinTest {
       public static void main(String[] args) throws IOException, SQLException {
           BufferedReader reader = new BufferedReader(new 
InputStreamReader(LeftJoinTest.class
                           
.getResourceAsStream("/sharding-config-left-join-test.yaml"), "utf-8"));
           StringBuffer sb = new StringBuffer();
           CharBuffer charBuffer = CharBuffer.allocate(1024);
           for (int count = reader.read(charBuffer); count > 0; count = 
reader.read(charBuffer)) {
               sb.append(charBuffer.flip());
           }
   
           DataSource dataSource = 
YamlShardingDataSourceFactory.createDataSource(sb.toString().getBytes("utf-8"));
           Connection connection = dataSource.getConnection();
           Statement st = connection.createStatement();
           String sql = "select td.*, tda.* from ts_order td left join 
ts_order_address tda on td.id = tda.order_id where td.id = 1";
           ResultSet rs = st.executeQuery(sql);
           showData(rs);
   
           st.close();
           connection.close();
       }
   
       private static void showData(ResultSet rs) throws SQLException {
           
System.out.println("------------------------------------------------------------");
           int colCount = rs.getMetaData().getColumnCount();
           for (int i = 0; i < colCount; i++) {
               System.out.print(String.format("%-20s", 
rs.getMetaData().getColumnName(i + 1)));
           }
           System.out.println();
           int dataCount = 0;
           while (rs.next()) {
               dataCount++;
               for (int i = 0; i < colCount; i++) {
                   System.out.print(String.format("%-20s", rs.getObject(i + 1) 
+ " "));
               }
               System.out.println();
           }
           
System.out.println("------------------------------------------------------------");
           System.out.println("Get data rows : " + dataCount);
       }
   }
   ```
   
   **Sharding Rule**
   sharding-config-left-join-test.yaml
   
   ```yaml
   dataSources: 
     ds_0: !!com.alibaba.druid.pool.DruidDataSource
       driverClassName: com.mysql.jdbc.Driver
       url: jdbc:mysql://localhost:3306/test_d_0
       username: root
       password: root135
     ds_1: !!com.alibaba.druid.pool.DruidDataSource
       driverClassName: com.mysql.jdbc.Driver
       url: jdbc:mysql://localhost:3306/test_d_1
       username: root
       password: root135
   
   shardingRule:
     tables:
       ts_order:
         actualDataNodes: ds_0.ts_order_000${0..1},ds_1.ts_order_000${2..3}
         databaseStrategy:
           inline:
             shardingColumn: id
             algorithmExpression: ds_${new 
BigDecimal(id).abs().divideAndRemainder(4)[1].longValue().intdiv(2)}
         tableStrategy:
           inline:
             shardingColumn: id
             algorithmExpression: ts_order_${String.format("%04d",new 
BigDecimal(id).abs().divideAndRemainder(4)[1].longValue())}
       ts_order_address:
         actualDataNodes: 
ds_0.ts_order_address_000${0..1},ds_1.ts_order_address_000${2..3}
         databaseStrategy:
           inline:
             shardingColumn: order_id
             algorithmExpression: ds_${new 
BigDecimal(order_id).abs().divideAndRemainder(4)[1].longValue().intdiv(2)}
         tableStrategy:
           inline:
             shardingColumn: order_id
             algorithmExpression: ts_order_address_${String.format("%04d",new 
BigDecimal(order_id).abs().divideAndRemainder(4)[1].longValue())}
   
   props:
     sql.show: true
   ```
   
   ### Example codes for reproduce this issue (such as a github link).

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to