ClickHouse/doc/reference/en/system_tables/system.functions.rst
Alexey Milovidov 5182b60026 Fixed newlines in .rst files before code blocks [#CLICKHOUSE-2].
for i in $(find . -name '*.rst'); do grep -F -q '.. code-block:: ' $i && cat $i | sed -r -e 's/$/<NEWLINE>/' | tr -d '\n' | sed -r -e 's/([^>])<NEWLINE>.. code-block::/\1<NEWLINE><NEWLINE>.. code-block::/g' | sed -r -e 's/<NEWLINE>/\n/g' > ${i}.tmp && mv ${i}.tmp ${i}; done
2017-06-13 23:35:07 +03:00

11 lines
230 B
ReStructuredText

system.functions
----------------
Contains information about normal and aggregate functions.
Columns:
.. code-block:: text
name String - Function name.
is_aggregate UInt8 - Whether it is an aggregate function.