Browse Source

small fixs

Volovikov Alexander 4 months ago
parent
commit
e945b4b475
1 changed files with 3 additions and 2 deletions
  1. 3 2
      _Infra/scripts/HomeWork20250206_Part2.sql

+ 3 - 2
_Infra/scripts/HomeWork20250206_Part2.sql

@@ -70,10 +70,11 @@
 			
 			end if;
 			
-            var_result := (var_temperature - var_interpolation.x0) * (var_interpolation.y1 - var_interpolation.y0) / var_denominator + var_interpolation.y0;
-			raise notice 'Результат: %', var_result;
+                       var_result := (var_temperature - var_interpolation.x0) * (var_interpolation.y1 - var_interpolation.y0) / var_denominator + var_interpolation.y0;
 		
 		end;
 		end if;
 
+	        raise notice 'Результат: %', var_result;
+
  end $$;