Cpaulyz opened a new pull request, #12515: URL: https://github.com/apache/iotdb/pull/12515
## Description ### Reproduce ```SQL create device template t1 aligned (attr BOOLEAN, fuel_state DOUBLE, current_load INT32, status INT32); create database root.template; set device template t1 to root.template; create timeseries using device template on root.template.d1; insert into root.template.d1(time,status) aligned values(1,1); ``` then ```SQL select status from root.template.d1 where status <= 1 align by device; ``` return value of fetch schema should include hasNormalTimeSeries=false because all time series is template series  -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
