From: Vsevolod Stakhov Date: Tue, 7 Apr 2020 10:17:09 +0000 (+0100) Subject: [Minor] Clickhouse: Fix extra columns that are arrays X-Git-Tag: 2.6~554 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e7c1a6a9a153a5832fd7748927961949b63728cb;p=rspamd.git [Minor] Clickhouse: Fix extra columns that are arrays --- diff --git a/src/plugins/lua/clickhouse.lua b/src/plugins/lua/clickhouse.lua index cf70abab4..5cce0a442 100644 --- a/src/plugins/lua/clickhouse.lua +++ b/src/plugins/lua/clickhouse.lua @@ -1331,8 +1331,14 @@ if opts then rspamd_logger.errx(rspamd_config, 'cannot add clickhouse extra row %s: no type or no selector', col_name) else + local is_array = false + + if col_data.type:lower():match('^array') then + is_array = true + end + local selector = lua_selectors.create_selector_closure(rspamd_config, - col_data.selector, col_data.delimiter or '', false) + col_data.selector, col_data.delimiter or '', is_array) if not selector then rspamd_logger.errx(rspamd_config, 'cannot add clickhouse extra row %s: bad selector: %s', @@ -1341,7 +1347,7 @@ if opts then settings.extra_columns[col_name] = nil else if not col_data.default_value then - if col_data.type:lower():match('^array') then + if is_array then col_data.default_value = {} else col_data.default_value = ''