v.23.9Performance Improvement
Allow Primary Key Usage in IN Function with Different Column Types
Allow to use primary key for IN function where primary key column types are different fromINfunction right side column types. Example:SELECT id FROM test_table WHERE id IN (SELECT '5'). Closes #48936. #54544 (Maksim Kita).