You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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
Enhancement
duplicate CastValue when executing import into from select statement, it can be optimized to save CPU resource.
The text was updated successfully, but these errors were encountered: