diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-06-26 11:45:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-26 11:45:48 +0100 |
commit | cddb4c7f18869c5a99cd0634c4dcea2e31b0940d (patch) | |
tree | e3dfe39bae9c942cd37c83ee4ad623d56cc49639 /lualib | |
parent | 5238bbae70922d422a010e4874abe3c13ac26ce6 (diff) | |
parent | 2fd8ae45023bc225bdb2970581452a9c700555db (diff) | |
download | rspamd-cddb4c7f18869c5a99cd0634c4dcea2e31b0940d.tar.gz rspamd-cddb4c7f18869c5a99cd0634c4dcea2e31b0940d.zip |
Merge pull request #2939 from citrin/clickhouse
[Minor] ClickHouse: Improve things stored
Diffstat (limited to 'lualib')
-rw-r--r-- | lualib/lua_clickhouse.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lualib/lua_clickhouse.lua b/lualib/lua_clickhouse.lua index ad5b51dce..4a57afd3f 100644 --- a/lualib/lua_clickhouse.lua +++ b/lualib/lua_clickhouse.lua @@ -49,7 +49,7 @@ local function clickhouse_quote(str) ['\\'] = [[\\]], ['\n'] = [[\n]], ['\t'] = [[\t]], - }):lower() + }) end return '' @@ -503,4 +503,4 @@ exports.generic_sync = function (upstream, settings, params, query) end end -return exports
\ No newline at end of file +return exports |