diff --git a/posthog/temporal/batch_exports/s3_batch_export.py b/posthog/temporal/batch_exports/s3_batch_export.py index a6420e95cb8b19..d2261b5c4edcbc 100644 --- a/posthog/temporal/batch_exports/s3_batch_export.py +++ b/posthog/temporal/batch_exports/s3_batch_export.py @@ -409,8 +409,6 @@ def s3_default_fields() -> list[BatchExportField]: batch_export_fields.append({"expression": "elements_chain", "alias": "elements_chain"}) batch_export_fields.append({"expression": "nullIf(person_properties, '')", "alias": "person_properties"}) batch_export_fields.append({"expression": "toString(person_id)", "alias": "person_id"}) - # In contrast to other destinations, we do export this field. - batch_export_fields.append({"expression": "COALESCE(inserted_at, _timestamp)", "alias": "inserted_at"}) # Again, in contrast to other destinations, and for historical reasons, we do not include these fields. not_exported_by_default = {"team_id", "set", "set_once"} diff --git a/posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py b/posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py index a58fb54d679016..f28ed27935ce55 100644 --- a/posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py +++ b/posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py @@ -308,7 +308,6 @@ async def assert_clickhouse_records_in_s3( { "fields": [ {"expression": "event", "alias": "my_event_name"}, - {"expression": "inserted_at", "alias": "inserted_at"}, {"expression": "1 + 1", "alias": "two"}, ], "values": {},