Aaron Wishnick
04/13/2021, 3:52 PMselect * from foo limit 10
I get: "message": "MergeResponseError: responses for table: foo from servers: [10.20.67.239_O] got dropped due to data schema inconsistency.",Mayank
select *
, you are selecting all columns. However, your aggregation query may not be touching the column that is not present (or different) across segments, so you are not running into the issue.Mayank
Aaron Wishnick
04/13/2021, 6:12 PMAaron Wishnick
04/13/2021, 6:14 PM