Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

duplicate CastValue when executing import into from select statement #60373

Open
crazycs520 opened this issue Apr 2, 2025 · 1 comment · May be fixed by #60397
Open

duplicate CastValue when executing import into from select statement #60373

crazycs520 opened this issue Apr 2, 2025 · 1 comment · May be fixed by #60397
Labels
type/enhancement The issue or PR belongs to an enhancement.

Comments

@crazycs520
Copy link
Contributor

crazycs520 commented Apr 2, 2025

Enhancement

duplicate CastValue when executing import into from select statement, it can be optimized to save CPU resource.

Image

@crazycs520 crazycs520 added the type/enhancement The issue or PR belongs to an enhancement. label Apr 2, 2025
@crazycs520 crazycs520 changed the title duplicate cast value when executing import into from select statement duplicate CastValue when executing import into from select statement Apr 2, 2025
@lance6716
Copy link
Contributor

lance6716 commented Apr 2, 2025

Apart from the "duplication", I think the cast logic should have a fast path if the source and target type are the same type. In above CPU profile, the SQL statement is

IMPORT INTO `bdcp`.`result_tmp` FROM (
  SELECT 
    RPAD(`AC`, 25, _UTF8MB4' ') AS `AC`,
    RPAD(`CCY`, 3, _UTF8MB4' ') AS `CCY`
...

while the bdcp.result_tmp is

CREATE TABLE `result_tmp` (
  `AC` varchar(50) NOT NULL DEFAULT '',
  `CCY` varchar(50) NOT NULL DEFAULT '',
...

There's no need to run the checking logic in type cast

@crazycs520 crazycs520 linked a pull request Apr 3, 2025 that will close this issue
13 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/enhancement The issue or PR belongs to an enhancement.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants