Maria Basmanova

Results 22 issues of Maria Basmanova

I'm seeing that some GET requests get silently dropped by the server, e.g. I see the request in WireShark, but HttpSession::onReceivedRequest method doesn't get called. The same exact request retried...

Velox includes many of the PrestoSQL functions, but a few are still missing. It would great to add these. Function coverage map: https://facebookincubator.github.io/velox/functions/coverage.html A subset of missing functions that would...

enhancement
good first issue

See velox/substrait/tests/VeloxToSubstraitTypeTest.cpp ``` // Array type is not supported yet. ASSERT_ANY_THROW(testTypeConversion(ARRAY(BIGINT()))); // Map type is not supported yet. ASSERT_ANY_THROW(testTypeConversion(MAP(BIGINT(), DOUBLE()))); ```

enhancement
good first issue
substrait

Currently, min and max aggregate functions with DATE input types produce DATE intermediate results. We need to double check whether this matches intermediate types expected by the Presto planner and...

bug

PR #18274 added support for maps and arrays in VALUES clause. This issue about adding support for structs. ``` select * from (values(1, row(1, 'test'))) as t(a, b); Query 20220906_130852_01826_h2hkx...

good first issue

Extends CrossJoinNode plan node and CrossJoinProbe operator to support LEFT, RIGHT and FULL OUTER joins without equi-clauses. ``` SELECT * FROM t LEFT JOIN u ON t.a < u.b; SELECT...

enhancement
operators

Filter::mergeWith API is used to merge filters pushed down from the join to topN operators into collocated table scan. Currently this API is implemented for numeric types. This task is...

good first issue

An investigation of a slow exchange-heavy query prompted re-thinking of Exchange protocol used in Presto and Prestissimo. The query under investigation has 10+ count(distinct) which are planned as 10+ stages...

feature request
design

Differential Revision: D55705440

CLA Signed
fb-exported