ya.make 5.5 KB
Newer Older
1
# This file is generated automatically, do not edit. See 'ya.make.in' and use 'utils/generate-ya-make' to regenerate it.
2 3 4 5 6
LIBRARY()

PEERDIR(
    clickhouse/src/Common
    contrib/libs/msgpack
I
Ivan 已提交
7
    contrib/libs/protobuf
8 9
)

A
Alexey Milovidov 已提交
10

11 12 13 14
SRCS(
    Chunk.cpp
    ConcatProcessor.cpp
    DelayedPortsProcessor.cpp
15
    Executors/ExecutingGraph.cpp
N
Nikolai Kochetov 已提交
16
    Executors/PipelineExecutingBlockInputStream.cpp
17
    Executors/PipelineExecutor.cpp
18
    Executors/PullingAsyncPipelineExecutor.cpp
N
Nikolai Kochetov 已提交
19
    Executors/PullingPipelineExecutor.cpp
20 21
    ForkProcessor.cpp
    Formats/IInputFormat.cpp
A
Alexey Milovidov 已提交
22 23 24
    Formats/IOutputFormat.cpp
    Formats/IRowInputFormat.cpp
    Formats/IRowOutputFormat.cpp
25 26 27 28
    Formats/Impl/BinaryRowInputFormat.cpp
    Formats/Impl/BinaryRowOutputFormat.cpp
    Formats/Impl/CSVRowInputFormat.cpp
    Formats/Impl/CSVRowOutputFormat.cpp
A
Alexey Milovidov 已提交
29
    Formats/Impl/ConstantExpressionTemplate.cpp
A
Anton Okhitin 已提交
30
    Formats/Impl/JSONAsStringRowInputFormat.cpp
31 32 33 34 35 36 37
    Formats/Impl/JSONCompactEachRowRowInputFormat.cpp
    Formats/Impl/JSONCompactEachRowRowOutputFormat.cpp
    Formats/Impl/JSONCompactRowOutputFormat.cpp
    Formats/Impl/JSONEachRowRowInputFormat.cpp
    Formats/Impl/JSONEachRowRowOutputFormat.cpp
    Formats/Impl/JSONEachRowWithProgressRowOutputFormat.cpp
    Formats/Impl/JSONRowOutputFormat.cpp
N
nikitamikhaylov 已提交
38
    Formats/Impl/LineAsStringRowInputFormat.cpp
I
Ivan 已提交
39
    Formats/Impl/MarkdownRowOutputFormat.cpp
40 41 42 43 44 45
    Formats/Impl/MsgPackRowInputFormat.cpp
    Formats/Impl/MsgPackRowOutputFormat.cpp
    Formats/Impl/MySQLOutputFormat.cpp
    Formats/Impl/NativeFormat.cpp
    Formats/Impl/NullFormat.cpp
    Formats/Impl/ODBCDriver2BlockOutputFormat.cpp
M
squash  
MovElb 已提交
46
    Formats/Impl/PostgreSQLOutputFormat.cpp
47 48 49 50 51
    Formats/Impl/PrettyBlockOutputFormat.cpp
    Formats/Impl/PrettyCompactBlockOutputFormat.cpp
    Formats/Impl/PrettySpaceBlockOutputFormat.cpp
    Formats/Impl/ProtobufRowInputFormat.cpp
    Formats/Impl/ProtobufRowOutputFormat.cpp
A
Alexey Milovidov 已提交
52 53
    Formats/Impl/RawBLOBRowInputFormat.cpp
    Formats/Impl/RawBLOBRowOutputFormat.cpp
54
    Formats/Impl/RegexpRowInputFormat.cpp
A
Alexey Milovidov 已提交
55 56
    Formats/Impl/TSKVRowInputFormat.cpp
    Formats/Impl/TSKVRowOutputFormat.cpp
57 58 59 60 61 62 63 64 65 66
    Formats/Impl/TabSeparatedRowInputFormat.cpp
    Formats/Impl/TabSeparatedRowOutputFormat.cpp
    Formats/Impl/TemplateBlockOutputFormat.cpp
    Formats/Impl/TemplateRowInputFormat.cpp
    Formats/Impl/ValuesBlockInputFormat.cpp
    Formats/Impl/ValuesRowOutputFormat.cpp
    Formats/Impl/VerticalRowOutputFormat.cpp
    Formats/Impl/XMLRowOutputFormat.cpp
    Formats/LazyOutputFormat.cpp
    Formats/OutputStreamToOutputFormat.cpp
N
Nikolai Kochetov 已提交
67
    Formats/PullingOutputFormat.cpp
68 69 70 71 72 73 74 75
    Formats/RowInputFormatWithDiagnosticInfo.cpp
    IAccumulatingTransform.cpp
    IInflatingTransform.cpp
    IProcessor.cpp
    ISimpleTransform.cpp
    ISink.cpp
    ISource.cpp
    LimitTransform.cpp
I
Ivan 已提交
76 77 78 79 80 81 82 83 84 85 86
    Merges/Algorithms/AggregatingSortedAlgorithm.cpp
    Merges/Algorithms/CollapsingSortedAlgorithm.cpp
    Merges/Algorithms/GraphiteRollupSortedAlgorithm.cpp
    Merges/Algorithms/IMergingAlgorithmWithDelayedChunk.cpp
    Merges/Algorithms/IMergingAlgorithmWithSharedChunks.cpp
    Merges/Algorithms/MergingSortedAlgorithm.cpp
    Merges/Algorithms/ReplacingSortedAlgorithm.cpp
    Merges/Algorithms/SummingSortedAlgorithm.cpp
    Merges/Algorithms/VersionedCollapsingAlgorithm.cpp
    Merges/IMergingTransform.cpp
    Merges/MergingSortedTransform.cpp
A
Artem Zuikov 已提交
87
    OffsetTransform.cpp
88 89 90
    Pipe.cpp
    Port.cpp
    QueryPipeline.cpp
91 92
    QueryPlan/AddingDelayedSourceStep.cpp
    QueryPlan/AggregatingStep.cpp
93
    QueryPlan/ArrayJoinStep.cpp
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
    QueryPlan/ConvertingStep.cpp
    QueryPlan/CreatingSetsStep.cpp
    QueryPlan/CubeStep.cpp
    QueryPlan/DistinctStep.cpp
    QueryPlan/ExpressionStep.cpp
    QueryPlan/ExtremesStep.cpp
    QueryPlan/FillingStep.cpp
    QueryPlan/FilterStep.cpp
    QueryPlan/FinishSortingStep.cpp
    QueryPlan/IQueryPlanStep.cpp
    QueryPlan/ISourceStep.cpp
    QueryPlan/ITransformingStep.cpp
    QueryPlan/LimitByStep.cpp
    QueryPlan/LimitStep.cpp
    QueryPlan/MergeSortingStep.cpp
    QueryPlan/MergingAggregatedStep.cpp
    QueryPlan/MergingSortedStep.cpp
    QueryPlan/OffsetStep.cpp
    QueryPlan/PartialSortingStep.cpp
    QueryPlan/QueryPlan.cpp
    QueryPlan/ReadFromPreparedSource.cpp
    QueryPlan/ReadFromStorageStep.cpp
    QueryPlan/ReadNothingStep.cpp
    QueryPlan/RollupStep.cpp
    QueryPlan/TotalsHavingStep.cpp
    QueryPlan/UnionStep.cpp
120
    ResizeProcessor.cpp
N
Nikolai Kochetov 已提交
121
    Sources/DelayedSource.cpp
122
    Sources/RemoteSource.cpp
123 124 125 126
    Sources/SinkToOutputStream.cpp
    Sources/SourceFromInputStream.cpp
    Sources/SourceWithProgress.cpp
    Transforms/AddingMissedTransform.cpp
N
Nikolai Kochetov 已提交
127
    Transforms/AddingSelectorTransform.cpp
128
    Transforms/AggregatingInOrderTransform.cpp
129
    Transforms/AggregatingTransform.cpp
130
    Transforms/ArrayJoinTransform.cpp
131
    Transforms/ConvertingTransform.cpp
N
Nikolai Kochetov 已提交
132
    Transforms/CopyTransform.cpp
133 134 135 136 137 138 139 140
    Transforms/CreatingSetsTransform.cpp
    Transforms/CubeTransform.cpp
    Transforms/DistinctTransform.cpp
    Transforms/ExpressionTransform.cpp
    Transforms/ExtremesTransform.cpp
    Transforms/FillingTransform.cpp
    Transforms/FilterTransform.cpp
    Transforms/FinishSortingTransform.cpp
141
    Transforms/JoiningTransform.cpp
142 143 144 145 146 147 148 149 150 151 152
    Transforms/LimitByTransform.cpp
    Transforms/LimitsCheckingTransform.cpp
    Transforms/MaterializingTransform.cpp
    Transforms/MergeSortingTransform.cpp
    Transforms/MergingAggregatedMemoryEfficientTransform.cpp
    Transforms/MergingAggregatedTransform.cpp
    Transforms/PartialSortingTransform.cpp
    Transforms/ReverseTransform.cpp
    Transforms/RollupTransform.cpp
    Transforms/SortingTransform.cpp
    Transforms/TotalsHavingTransform.cpp
A
Alexey Milovidov 已提交
153
    printPipeline.cpp
154

155 156 157
)

END()