facebookincubator / velox

A C++ vectorized database acceleration library aimed to optimizing query engines and data processing systems.
https://velox-lib.io/
Apache License 2.0
3.45k stars 1.13k forks source link

Implement word_stem in prestosql #5959

Open arundpanicker opened 1 year ago

arundpanicker commented 1 year ago

Description

Add missing function to handle word_stem prestosql function

arundpanicker commented 1 year ago
aditi-pandit commented 1 year ago

@mbasmanova, @Yuhta : Any thoughts ?

mbasmanova commented 1 year ago

CC: @kgpai @majetideepak

mbasmanova commented 1 year ago

FYI, we have some code at Meta that uses snowball (libstemmer) library.

// This will stem words according to the Snowball Stemmer algorithm
// http://snowballstem.org/
class Stemmer {