@@ -3205,6 +3205,43 @@ def use_eap_items_table(
3205
3205
snuba_set_config ("use_eap_items_table" , True )
3206
3206
snuba_set_config ("use_eap_items_table_start_timestamp_seconds" , 0 )
3207
3207
3208
+ def test_empty_downsampling_storage_config_does_not_have_downsampled_storage_meta (
3209
+ self ,
3210
+ ) -> None :
3211
+ items_storage = get_storage (StorageKey ("eap_items" ))
3212
+ msg_timestamp = BASE_TIME - timedelta (minutes = 1 )
3213
+ messages = [
3214
+ gen_message (
3215
+ msg_timestamp ,
3216
+ )
3217
+ for _ in range (30 )
3218
+ ]
3219
+ write_raw_unprocessed_events (items_storage , messages ) # type: ignore
3220
+
3221
+ ts = Timestamp (seconds = int (BASE_TIME .timestamp ()))
3222
+ hour_ago = int ((BASE_TIME - timedelta (hours = 1 )).timestamp ())
3223
+
3224
+ empty_downsampled_storage_config_message = TraceItemTableRequest (
3225
+ meta = RequestMeta (
3226
+ project_ids = [1 , 2 , 3 ],
3227
+ organization_id = 1 ,
3228
+ cogs_category = "something" ,
3229
+ referrer = "something" ,
3230
+ start_timestamp = Timestamp (seconds = hour_ago ),
3231
+ end_timestamp = ts ,
3232
+ request_id = "be3123b3-2e5d-4eb9-bb48-f38eaa9e8480" ,
3233
+ trace_item_type = TraceItemType .TRACE_ITEM_TYPE_SPAN ,
3234
+ downsampled_storage_config = DownsampledStorageConfig (),
3235
+ ),
3236
+ columns = [
3237
+ Column (key = AttributeKey (type = AttributeKey .TYPE_STRING , name = "color" ))
3238
+ ],
3239
+ )
3240
+ response = EndpointTraceItemTable ().execute (
3241
+ empty_downsampled_storage_config_message
3242
+ )
3243
+ assert not response .meta .HasField ("downsampled_storage_meta" )
3244
+
3208
3245
def test_preflight (self ) -> None :
3209
3246
items_storage = get_storage (StorageKey ("eap_items" ))
3210
3247
msg_timestamp = BASE_TIME - timedelta (minutes = 1 )
0 commit comments