mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 06:32:08 +00:00
5182b60026
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
11 lines
230 B
ReStructuredText
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.
|