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
for (size_t i = 0; i < source.ColumnsSize(); ++i) {
970
+
constauto& name = source.GetColumns().Get(i);
971
+
constauto& type = source.GetColumnTypes().Get(i);
972
+
constauto it = FieldsIndexes.find(name);
973
+
if (it != FieldsIndexes.end() && it->second.Type != type) {
974
+
LOG_ROW_DISPATCHER_INFO("Different column `" << name << "` type, expected " << it->second.Type << ", actual " << type << ", send error");
975
+
SendSessionError(ev->Sender, TStringBuilder() << "Use the same column type in all queries via RD, current type for column `" << name << "` is " << it->second.Type << " (requested type is " << type <<")");
ExpectSessionError(ReadActorId2, "Use the same column type in all queries via RD, current type for column `field1` is [OptionalType; [DataType; String]] (requested type is [DataType; String])");
0 commit comments