From 5a7727220b8098fbd6fff42bbec9048c03b3b993 Mon Sep 17 00:00:00 2001 From: Riccardo Boero <ribo@nilu.no> Date: Thu, 4 Apr 2024 09:53:00 +0200 Subject: [PATCH] Removed debugging printout --- src/FACT_jobs.jl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/FACT_jobs.jl b/src/FACT_jobs.jl index e4189ea..679d4a7 100644 --- a/src/FACT_jobs.jl +++ b/src/FACT_jobs.jl @@ -99,8 +99,7 @@ function us_qcew(conn::MySQL.Connection, selection::Dict) result = query_connection(conn, query) # Check if the 'industry' column exists if !("industry" in names(result)) - println(result) - println("No data returned for query with GeoID = $full_id and Year = $year and AND Agglvl_code = $agglvl_code.") + println("No data returned for query with GeoID = $full_id and Year = $year and AND Agglvl_code = $agglvl_code.") # Initialize `result` with the expected columns but no rows result = DataFrame(industry = String[], jobs = Float64[], geo_id = String[], agg_level = Int[]) end -- GitLab