This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension_uris { | |
extension_uri_anchor: 1 | |
uri: "https://github.com/substrait-io/substrait/blob/main/extensions/functions_boolean.yaml" | |
} | |
extension_uris { | |
extension_uri_anchor: 2 | |
uri: "https://github.com/substrait-io/substrait/blob/main/extensions/functions_comparison.yaml" | |
} | |
extensions { | |
extension_function { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <arrow/api.h> | |
#include <arrow/compute/api.h> | |
#include <iostream> | |
#include <random> | |
template <typename TYPE, | |
typename = typename std::enable_if<arrow::is_number_type<TYPE>::value | | |
arrow::is_boolean_type<TYPE>::value | | |
arrow::is_temporal_type<TYPE>::value>::type> | |
arrow::Result<std::shared_ptr<arrow::Array>> GetArrayDataSample( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Version 4 | |
--------- | |
Install Libraries | |
----------------- | |
On Mac M1 | |
---------- | |
pip install ibis ibis-substrait pyarrow duckdb-engine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Version 4 | |
--------- | |
Install Libraries | |
----------------- | |
On Mac M1 | |
---------- | |
pip install ibis ibis-substrait pyarrow duckdb-engine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Version 3 | |
--------- | |
Update to naming used for projection | |
Function Performed | |
------------------ | |
Generate Substrait Plans and Corresponding SQL via Ibis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Version 2 | |
--------- | |
Update to naming used for projection | |
Function Performed | |
------------------ | |
Generate Substrait Plans and Corresponding SQL via Ibis |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Generate Substrait Plans and Corresponding SQL via Ibis | |
Requirements | |
------------ | |
pip install ibis ibis-substrait pyarrow | |
Run Script | |
---------- | |
python generate_substrait_projections.py <path-to-save-directory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Doxyfile 1.8.17 | |
#--------------------------------------------------------------------------- | |
# Project related configuration options | |
#--------------------------------------------------------------------------- | |
DOXYFILE_ENCODING = UTF-8 | |
PROJECT_NAME = "PyVelox" | |
PROJECT_NUMBER = | |
PROJECT_BRIEF = | |
PROJECT_LOGO = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Example 1", | |
"type": "cppdbg", | |
"request": "launch", |
NewerOlder