refactor: reduce default column limit

Reduces the default number of columns allowed per-table, from 1,000 to
200.
pull/24376/head
Dom Dwyer 2022-10-14 14:45:48 +02:00
parent 475c8a0704
commit 46bbee5423
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
-- Lower the defualt per-table column limit.
--
-- https://github.com/influxdata/influxdb_iox/issues/5858
ALTER TABLE
namespace ALTER max_columns_per_table
SET
DEFAULT 200;