ClickHouse/dbms/tests/integration/test_dictionaries/configs/dictionaries/dictionary_preset_file.xml
2019-06-14 22:21:37 +03:00

37 lines
948 B
XML

<?xml version="1.0"?>
<dictionaries>
<dictionary>
<name>file</name>
<source>
<file>
<path>/etc/clickhouse-server/config.d/dictionary_preset_file.txt</path>
<format>TabSeparated</format>
</file>
</source>
<lifetime>1</lifetime>
<layout><flat/></layout>
<structure><id><name>key</name> </id>
<attribute><name>a</name><type>Int32</type>
<null_value>0</null_value>
</attribute>
</structure>
</dictionary>
<dictionary>
<name>no_file</name>
<source>
<file>
<path>/etc/clickhouse-server/config.d/dictionary_preset_no_file.txt</path>
<format>TabSeparated</format>
</file>
</source>
<lifetime>1</lifetime>
<layout><flat/></layout>
<structure><id><name>key</name> </id>
<attribute><name>a</name><type>Int32</type>
<null_value>0</null_value>
</attribute>
</structure>
</dictionary>
</dictionaries>