Skip to content

Commit

Permalink
store obs_qc data as strings #261
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaBurek committed Mar 8, 2021
1 parent 297b8da commit d90f46c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/mv_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ CREATE TABLE line_data_mpr
mpr_fcst DOUBLE,
mpr_obs DOUBLE,
mpr_climo DOUBLE,
obs_qc DOUBLE DEFAULT -9999,
obs_qc VARCHAR(32),
climo_mean DOUBLE,
climo_stdev DOUBLE,
climo_cdf DOUBLE,
Expand Down Expand Up @@ -1503,7 +1503,7 @@ CREATE TABLE line_data_orank
rank INT,
n_ens_vld INT UNSIGNED,
n_ens INT UNSIGNED,
obs_qc DOUBLE DEFAULT -9999,
obs_qc VARCHAR(32),
ens_mean DOUBLE DEFAULT -9999,
climo_mean DOUBLE DEFAULT -9999,
spread DOUBLE DEFAULT -9999,
Expand Down

0 comments on commit d90f46c

Please sign in to comment.