ya.make 5.7 KB
Newer Older
1 2 3 4 5
LIBRARY()

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

SRCS(
    Chunk.cpp
    ConcatProcessor.cpp
    DelayedPortsProcessor.cpp
N
Nikolai Kochetov 已提交
13
    Executors/PipelineExecutingBlockInputStream.cpp
14
    Executors/PipelineExecutor.cpp
15
    Executors/PullingAsyncPipelineExecutor.cpp
N
Nikolai Kochetov 已提交
16
    Executors/PullingPipelineExecutor.cpp
17 18 19 20 21 22 23 24
    Executors/TreeExecutorBlockInputStream.cpp
    ForkProcessor.cpp
    Formats/IInputFormat.cpp
    Formats/Impl/BinaryRowInputFormat.cpp
    Formats/Impl/BinaryRowOutputFormat.cpp
    Formats/Impl/ConstantExpressionTemplate.cpp
    Formats/Impl/CSVRowInputFormat.cpp
    Formats/Impl/CSVRowOutputFormat.cpp
A
Anton Okhitin 已提交
25
    Formats/Impl/JSONAsStringRowInputFormat.cpp
26 27 28 29 30 31 32
    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
I
Ivan 已提交
33
    Formats/Impl/MarkdownRowOutputFormat.cpp
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    Formats/Impl/MsgPackRowInputFormat.cpp
    Formats/Impl/MsgPackRowOutputFormat.cpp
    Formats/Impl/MySQLOutputFormat.cpp
    Formats/Impl/NativeFormat.cpp
    Formats/Impl/NullFormat.cpp
    Formats/Impl/ODBCDriver2BlockOutputFormat.cpp
    Formats/Impl/ODBCDriverBlockOutputFormat.cpp
    Formats/Impl/PrettyBlockOutputFormat.cpp
    Formats/Impl/PrettyCompactBlockOutputFormat.cpp
    Formats/Impl/PrettySpaceBlockOutputFormat.cpp
    Formats/Impl/ProtobufRowInputFormat.cpp
    Formats/Impl/ProtobufRowOutputFormat.cpp
    Formats/Impl/RegexpRowInputFormat.cpp
    Formats/Impl/TabSeparatedRowInputFormat.cpp
    Formats/Impl/TabSeparatedRowOutputFormat.cpp
    Formats/Impl/TemplateBlockOutputFormat.cpp
    Formats/Impl/TemplateRowInputFormat.cpp
    Formats/Impl/TSKVRowInputFormat.cpp
    Formats/Impl/TSKVRowOutputFormat.cpp
    Formats/Impl/ValuesBlockInputFormat.cpp
    Formats/Impl/ValuesRowOutputFormat.cpp
    Formats/Impl/VerticalRowOutputFormat.cpp
    Formats/Impl/XMLRowOutputFormat.cpp
    Formats/IOutputFormat.cpp
    Formats/IRowInputFormat.cpp
    Formats/IRowOutputFormat.cpp
    Formats/LazyOutputFormat.cpp
    Formats/OutputStreamToOutputFormat.cpp
N
Nikolai Kochetov 已提交
62
    Formats/PullingOutputFormat.cpp
63 64 65 66 67 68 69 70
    Formats/RowInputFormatWithDiagnosticInfo.cpp
    IAccumulatingTransform.cpp
    IInflatingTransform.cpp
    IProcessor.cpp
    ISimpleTransform.cpp
    ISink.cpp
    ISource.cpp
    LimitTransform.cpp
I
Ivan 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
    Merges/AggregatingSortedTransform.h
    Merges/Algorithms/AggregatingSortedAlgorithm.cpp
    Merges/Algorithms/AggregatingSortedAlgorithm.h
    Merges/Algorithms/CollapsingSortedAlgorithm.cpp
    Merges/Algorithms/CollapsingSortedAlgorithm.h
    Merges/Algorithms/FixedSizeDequeWithGaps.h
    Merges/Algorithms/Graphite.h
    Merges/Algorithms/GraphiteRollupSortedAlgorithm.cpp
    Merges/Algorithms/GraphiteRollupSortedAlgorithm.h
    Merges/Algorithms/IMergingAlgorithm.h
    Merges/Algorithms/IMergingAlgorithmWithDelayedChunk.cpp
    Merges/Algorithms/IMergingAlgorithmWithDelayedChunk.h
    Merges/Algorithms/IMergingAlgorithmWithSharedChunks.cpp
    Merges/Algorithms/IMergingAlgorithmWithSharedChunks.h
    Merges/Algorithms/MergedData.h
    Merges/Algorithms/MergingSortedAlgorithm.cpp
    Merges/Algorithms/MergingSortedAlgorithm.h
    Merges/Algorithms/ReplacingSortedAlgorithm.cpp
    Merges/Algorithms/ReplacingSortedAlgorithm.h
    Merges/Algorithms/RowRef.h
    Merges/Algorithms/SummingSortedAlgorithm.cpp
    Merges/Algorithms/SummingSortedAlgorithm.h
    Merges/Algorithms/VersionedCollapsingAlgorithm.cpp
    Merges/Algorithms/VersionedCollapsingAlgorithm.h
    Merges/CollapsingSortedTransform.h
    Merges/GraphiteRollupSortedTransform.h
    Merges/IMergingTransform.cpp
    Merges/IMergingTransform.h
    Merges/MergingSortedTransform.cpp
    Merges/MergingSortedTransform.h
    Merges/ReplacingSortedTransform.h
    Merges/SummingSortedTransform.h
    Merges/VersionedCollapsingTransform.h
A
Artem Zuikov 已提交
104
    OffsetTransform.cpp
105 106 107 108
    Pipe.cpp
    Port.cpp
    QueryPipeline.cpp
    ResizeProcessor.cpp
N
Nikolai Kochetov 已提交
109
    Sources/DelayedSource.cpp
110 111 112
    Sources/SinkToOutputStream.cpp
    Sources/SourceFromInputStream.cpp
    Sources/SourceWithProgress.cpp
N
Nikolai Kochetov 已提交
113
    Sources/RemoteSource.cpp
114
    Transforms/AddingMissedTransform.cpp
N
Nikolai Kochetov 已提交
115
    Transforms/AddingSelectorTransform.cpp
116 117
    Transforms/AggregatingTransform.cpp
    Transforms/ConvertingTransform.cpp
N
Nikolai Kochetov 已提交
118
    Transforms/CopyTransform.cpp
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    Transforms/CreatingSetsTransform.cpp
    Transforms/CubeTransform.cpp
    Transforms/DistinctTransform.cpp
    Transforms/ExpressionTransform.cpp
    Transforms/ExtremesTransform.cpp
    Transforms/FillingTransform.cpp
    Transforms/FilterTransform.cpp
    Transforms/FinishSortingTransform.cpp
    Transforms/InflatingExpressionTransform.cpp
    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
D
Dmitry 已提交
139
    Transforms/AggregatingInOrderTransform.cpp
N
Nikolai Kochetov 已提交
140
    QueryPlan/DistinctTransform.cpp
N
Nikolai Kochetov 已提交
141 142
    QueryPlan/ExpressionStep.cpp
    QueryPlan/FilterStep.cpp
N
Nikolai Kochetov 已提交
143
    QueryPlan/ISourceStep.cpp
N
Nikolai Kochetov 已提交
144
    QueryPlan/ITransformingStep.cpp
N
Nikolai Kochetov 已提交
145
    QueryPlan/IQueryPlanStep.cpp
N
Nikolai Kochetov 已提交
146
    QueryPlan/LimitByStep.cpp
N
Nikolai Kochetov 已提交
147
    QueryPlan/MergeSortingStep.cpp
N
Nikolai Kochetov 已提交
148
    QueryPlan/MergingSortedStep.cpp
N
Nikolai Kochetov 已提交
149
    QueryPlan/PartialSortingStep.cpp
N
Nikolai Kochetov 已提交
150
    QueryPlan/ReadFromStorageStep.cpp
N
Nikolai Kochetov 已提交
151
    QueryPlan/ReadNothingStep.cpp
N
Nikolai Kochetov 已提交
152
    QueryPlan/QueryPlan.cpp
153 154 155
)

END()