Prashant Sharma

Results 40 comments of Prashant Sharma

> I'm still not sold on using doubles for row counts and the like. Doubles are not just a bigger long and have round off and representation problems integers don't....

I am hitting the same issue, the workaround did not help. My GCC version: gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0 On the fresh clone of latest master. I have used scripts/setup-ubuntu.sh to...

`[WARNING:] Could not load Thrift standard libraries: Could not find include file thrift/lib/thrift/schema.thrift` ``` [1124/1190] Building CXX object presto_cpp/main/thrift/CMakeFiles/presto_thrift-cpp2-obj.dir/presto_cpp/main/thrift/gen-cpp2/presto_thrift_data.cpp.o /tmp/ccdq84bm.s: Assembler messages: /tmp/ccdq84bm.s:4: Warning: setting incorrect section attributes for .rodata.thrift.data...

For me it turned out that, Gtest on my system was built from source(w/o PIE) and installed. Since this version was higher than system installed it was picked up by...

Hi Auden, 1) how does the annotation on a scalar function with two parameters and both parameter having different Sql types, look like? 2) Can we provide alternatives with different...

[StringFunctions.java](https://github.com/prestodb/presto/blob/master/presto-main/src/main/java/com/facebook/presto/operator/scalar/StringFunctions.java#L291) is one example

Looking closely at the reason why tests are failing, beginning with presto-orc module. Progress so far: * Tests try to write content with hive and read by presto, in case...

Another interesting find: Trying to read directly by hive version 3.0.0, orc file produced by presto without hive 4 changes. Produces incorrect results, whereas it produces correct results when reading...

The test failures such as: `TestOrcReader>AbstractTestOrcReader.testLongDirect:158->AbstractTestOrcReader.testRoundTripNumeric:325 expected [1970-01-01 00:00:00.001] but found [1970-01-01 06:00:00.001]` Is in the way presto reads the data and writes the data. Somehow even before the data...