I noticed that export to storage from a BigQuery derived table (table constructed from a query of another table) does strip the TIMESTAMP from the result.
- Table table with TIMESTAMP
- Do a query on that table, example "SELECT user_id,subscription_date FROM [All.Users] LIMIT 1000" (reproduced it with one row, two columns) 3.In Query options: Export query result to table: example "temp.Reproduce". I used allow large result to make sure to use the same option as in production.
- Export that new table "temp.Reproduce" to AVRO or CSV. (example: gs://bucket/temp/part*.avro)
- Notice that the TIMESTAMP value is missing!
Is someone else noticing the same?