Skip to content

Commit

Permalink
Fix an issue where a query may throw an error during a remote read an…
Browse files Browse the repository at this point in the history
…d the precision of a duration data type is changed. (#8671)

close #8601
  • Loading branch information
SeaRise authored Jan 5, 2024
1 parent 1aa8fcd commit 383e1bd
Show file tree
Hide file tree
Showing 9 changed files with 77 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dbms/src/Flash/Coprocessor/RemoteRequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,11 @@ RemoteRequest RemoteRequest::build(
}
else
{
const auto & col_info = table_info.getColumnInfo(col_id);
schema.emplace_back(std::make_pair(col_info.name, col_info));
// https://github.com/pingcap/tiflash/issues/8601
// If the precision of the `TIME`(which is MyDuration in TiFlash) type is modified,
// TiFlash storage layer may not trigger `sync_schema` and update table info.
// Therefore, the column info in the TiDB request will be used in this case.
schema.emplace_back(std::make_pair(table_info.getColumnInfo(col_id).name, col));
}
dag_req.add_output_offsets(i);
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
72 changes: 72 additions & 0 deletions tests/fullstack-test/issues/issue_8601.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Copyright 2024 PingCAP, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Preparation.
=> DBGInvoke __init_fail_point()
=> DBGInvoke __enable_schema_sync_service('false')

mysql> drop table if exists test.t;
mysql> create table if not exists test.t(a time(4));

mysql> insert into test.t values('700:10:10.123456');
mysql> insert into test.t values('-700:10:10.123456');
mysql> alter table test.t set tiflash replica 1;
func> wait_table test t

## time(4) to time(6)
mysql> alter table test.t modify column a time(6);

mysql> use test; set tidb_enforce_mpp=1; set tidb_isolation_read_engines='tiflash'; select a from test.t;
+-------------------+
| a |
+-------------------+
| 700:10:10.123500 |
| -700:10:10.123500 |
+-------------------+

=> DBGInvoke __enable_fail_point(force_remote_read_for_batch_cop)
mysql> use test; set tidb_enforce_mpp=1; set tidb_isolation_read_engines='tiflash'; select a from test.t;
+-------------------+
| a |
+-------------------+
| 700:10:10.123500 |
| -700:10:10.123500 |
+-------------------+
=> DBGInvoke __disable_fail_point(force_remote_read_for_batch_cop)

## time(6) to time(2)
mysql> alter table test.t modify column a time(2);

mysql> use test; set tidb_enforce_mpp=1; set tidb_isolation_read_engines='tiflash'; select a from test.t;
+---------------+
| a |
+---------------+
| 700:10:10.12 |
| -700:10:10.12 |
+---------------+

=> DBGInvoke __enable_fail_point(force_remote_read_for_batch_cop)
mysql> use test; set tidb_enforce_mpp=1; set tidb_isolation_read_engines='tiflash'; select a from test.t;
+---------------+
| a |
+---------------+
| 700:10:10.12 |
| -700:10:10.12 |
+---------------+
=> DBGInvoke __disable_fail_point(force_remote_read_for_batch_cop)

# Clean up.
mysql> drop table if exists test.t

=> DBGInvoke __enable_schema_sync_service('true')

0 comments on commit 383e1bd

Please sign in to comment.