Skip to content

Commit

Permalink
Automated submodule update: velox
Browse files Browse the repository at this point in the history
  • Loading branch information
facebook-github-bot committed Jun 13, 2022
1 parent 9a54cba commit 0357ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/velox/velox
Submodule velox updated 93 files
+1 −1 build/deps/github_hashes/facebook/folly-rev.txt
+0 −26 velox/common/encode/Base64.cpp
+12 −13 velox/connectors/hive/HiveConnector.cpp
+3 −2 velox/connectors/hive/HiveConnector.h
+14 −3 velox/connectors/tpch/TpchConnector.cpp
+7 −1 velox/connectors/tpch/TpchConnector.h
+17 −4 velox/connectors/tpch/TpchConnectorSplit.h
+33 −2 velox/connectors/tpch/tests/TpchConnectorTest.cpp
+93 −14 velox/docs/develop/scalar-functions.rst
+18 −0 velox/dwio/CMakeLists.txt
+0 −0 velox/dwio/common/Adaptor.h
+7 −22 velox/dwio/common/BufferedInput.cpp
+20 −25 velox/dwio/common/BufferedInput.h
+8 −1 velox/dwio/common/CMakeLists.txt
+11 −10 velox/dwio/common/CacheInputStream.cpp
+12 −13 velox/dwio/common/CacheInputStream.h
+23 −23 velox/dwio/common/CachedBufferedInput.cpp
+21 −21 velox/dwio/common/CachedBufferedInput.h
+6 −6 velox/dwio/common/DataSink.cpp
+6 −6 velox/dwio/common/DataSink.h
+16 −29 velox/dwio/common/InputStream.cpp
+17 −23 velox/dwio/common/InputStream.h
+4 −9 velox/dwio/common/IoStatistics.cpp
+2 −8 velox/dwio/common/IoStatistics.h
+7 −13 velox/dwio/common/MemoryInputStream.cpp
+7 −15 velox/dwio/common/MemoryInputStream.h
+4 −5 velox/dwio/common/Options.h
+4 −7 velox/dwio/common/SeekableInputStream.cpp
+11 −12 velox/dwio/common/SeekableInputStream.h
+11 −11 velox/dwio/common/tests/CMakeLists.txt
+1 −2 velox/dwio/common/tests/TestBufferedInput.cpp
+1 −1 velox/dwio/common/wrap/zero-copy-stream-wrapper.h
+8 −6 velox/dwio/dwrf/common/ByteRLE.cpp
+11 −8 velox/dwio/dwrf/common/ByteRLE.h
+0 −4 velox/dwio/dwrf/common/CMakeLists.txt
+3 −3 velox/dwio/dwrf/common/Compression.cpp
+3 −3 velox/dwio/dwrf/common/Compression.h
+1 −1 velox/dwio/dwrf/common/DecoderUtil.h
+7 −3 velox/dwio/dwrf/common/DirectDecoder.cpp
+2 −2 velox/dwio/dwrf/common/DirectDecoder.h
+5 −3 velox/dwio/dwrf/common/FloatingPointDecoder.h
+6 −6 velox/dwio/dwrf/common/IntDecoder.cpp
+7 −6 velox/dwio/dwrf/common/IntDecoder.h
+1 −1 velox/dwio/dwrf/common/OutputStream.h
+4 −2 velox/dwio/dwrf/common/PagedInputStream.cpp
+3 −2 velox/dwio/dwrf/common/PagedInputStream.h
+6 −3 velox/dwio/dwrf/common/RLEv1.cpp
+4 −3 velox/dwio/dwrf/common/RLEv1.h
+10 −6 velox/dwio/dwrf/common/RLEv2.cpp
+3 −3 velox/dwio/dwrf/common/RLEv2.h
+6 −6 velox/dwio/dwrf/common/StreamUtil.h
+1 −1 velox/dwio/dwrf/common/wrap/coded-stream-wrapper.h
+1 −1 velox/dwio/dwrf/common/wrap/dwrf-proto-wrapper.cpp
+1 −1 velox/dwio/dwrf/common/wrap/dwrf-proto-wrapper.h
+1 −1 velox/dwio/dwrf/reader/BinaryStreamReader.h
+19 −16 velox/dwio/dwrf/reader/ColumnReader.cpp
+3 −2 velox/dwio/dwrf/reader/DwrfReaderShared.cpp
+4 −3 velox/dwio/dwrf/reader/ReaderBase.cpp
+18 −14 velox/dwio/dwrf/reader/ReaderBase.h
+1 −1 velox/dwio/dwrf/reader/SelectiveByteRleColumnReader.h
+1 −1 velox/dwio/dwrf/reader/SelectiveColumnReader.h
+1 −1 velox/dwio/dwrf/reader/SelectiveFloatingPointColumnReader.h
+1 −1 velox/dwio/dwrf/reader/SelectiveIntegerDictionaryColumnReader.h
+1 −1 velox/dwio/dwrf/reader/SelectiveIntegerDirectColumnReader.h
+2 −2 velox/dwio/dwrf/reader/SelectiveRepeatedColumnReader.h
+4 −4 velox/dwio/dwrf/reader/SelectiveStringDictionaryColumnReader.h
+2 −2 velox/dwio/dwrf/reader/SelectiveStringDirectColumnReader.h
+1 −1 velox/dwio/dwrf/reader/SelectiveStructColumnReader.h
+3 −3 velox/dwio/dwrf/reader/StripeMetadataCache.h
+1 −1 velox/dwio/dwrf/reader/StripeReaderBase.cpp
+3 −2 velox/dwio/dwrf/reader/StripeReaderBase.h
+11 −10 velox/dwio/dwrf/reader/StripeStream.cpp
+5 −5 velox/dwio/dwrf/reader/StripeStream.h
+0 −31 velox/dwio/dwrf/test/CMakeLists.txt
+25 −36 velox/dwio/dwrf/test/CacheInputTest.cpp
+0 −1 velox/dwio/dwrf/test/E2EFilterTest.cpp
+4 −3 velox/dwio/dwrf/test/OrcTest.h
+2 −2 velox/dwio/dwrf/test/StripeReaderBaseTests.cpp
+1 −1 velox/dwio/dwrf/test/TestColumnReader.cpp
+57 −45 velox/dwio/dwrf/test/TestRle.cpp
+5 −3 velox/dwio/dwrf/utils/ProtoUtils.h
+11 −20 velox/dwio/parquet/tests/CMakeLists.txt
+0 −33 velox/expression/ComplexWriterTypes.h
+1 −1 velox/expression/Expr.cpp
+24 −23 velox/expression/StringWriter.h
+8 −21 velox/expression/VectorWriters.h
+51 −0 velox/expression/tests/SimpleFunctionTest.cpp
+4 −12 velox/functions/UDFOutputString.h
+2 −1 velox/functions/prestosql/tests/CMakeLists.txt
+1 −1 velox/functions/tests/FunctionRegistryTest.cpp
+15 −15 velox/substrait/SubstraitParser.h
+31 −28 velox/substrait/SubstraitToVeloxExpr.cpp
+7 −7 velox/substrait/SubstraitToVeloxExpr.h

0 comments on commit 0357ecc

Please sign in to comment.