dongjoon-hyun commented on issue #1576: URL: https://github.com/apache/orc/issues/1576#issuecomment-1815150574
Hi, @Aitozi . Did you solve your problem? I guess the original question was an lookup API which currently we don't provide. Like Apache Iceberg, Apache Spark also provides only a high-level usage documentation. - https://spark.apache.org/docs/latest/sql-data-sources-orc.html#bloom-filters ```SQL CREATE TABLE users_with_options ( name STRING, favorite_color STRING, favorite_numbers array<integer> ) USING ORC OPTIONS ( orc.bloom.filter.columns 'favorite_color', orc.dictionary.key.threshold '1.0', orc.column.encoding.direct 'name' ) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
