Skip to content

Commit d62fbd0

Browse files
authored
Merge pull request #484 from luke-kiernan/lk/show_time_series_name
include name in output of show_time_series_data
2 parents b50687e + 170f617 commit d62fbd0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/time_series_metadata_store.jl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -839,6 +839,7 @@ function get_static_time_series_summary_table(store::TimeSeriesMetadataStore)
839839
SELECT
840840
owner_type
841841
,owner_category
842+
,name
842843
,time_series_type
843844
,initial_timestamp
844845
,resolution AS resolution
@@ -849,13 +850,15 @@ function get_static_time_series_summary_table(store::TimeSeriesMetadataStore)
849850
GROUP BY
850851
owner_type
851852
,owner_category
853+
,name
852854
,time_series_type
853855
,initial_timestamp
854856
,resolution
855857
,length
856858
ORDER BY
857859
owner_category
858860
,owner_type
861+
,name
859862
,time_series_type
860863
,initial_timestamp
861864
,resolution
@@ -877,6 +880,7 @@ function get_forecast_summary_table(store::TimeSeriesMetadataStore)
877880
SELECT
878881
owner_type
879882
,owner_category
883+
,name
880884
,time_series_type
881885
,initial_timestamp
882886
,resolution AS resolution
@@ -889,6 +893,7 @@ function get_forecast_summary_table(store::TimeSeriesMetadataStore)
889893
GROUP BY
890894
owner_type
891895
,owner_category
896+
,name
892897
,time_series_type
893898
,initial_timestamp
894899
,resolution
@@ -898,6 +903,7 @@ function get_forecast_summary_table(store::TimeSeriesMetadataStore)
898903
ORDER BY
899904
owner_category
900905
,owner_type
906+
,name
901907
,time_series_type
902908
,initial_timestamp
903909
,resolution

0 commit comments

Comments
 (0)