Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] feature/table-from-postgresl-sqlite #1453

Open
wants to merge 18 commits into
base: branch-21.06
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
bddd445
[feature/table-from-postgresl-sqlite] update parser type names
gcca Apr 16, 2021
d9a3d9c
[feature/table-from-postgresl-sqlite] update provider construction
gcca Apr 16, 2021
5270ab2
[feature/table-from-postgresl-sqlite] update sqlite provider to check…
gcca Apr 16, 2021
243a586
[feature/table-from-postgresl-sqlite] update sqlite provider for dist…
gcca Apr 16, 2021
da42dce
[feature/table-from-postgresl-sqlite] update sqlite provider to load …
gcca Apr 17, 2021
8239b91
[feature/table-from-postgresl-sqlite] update postgresql provider for …
gcca Apr 19, 2021
7a9d717
Merge branch 'feature/predicate-pushdown-providers' of github.com:auc…
gcca Apr 19, 2021
928bf53
[feature/table-from-postgresl-sqlite] update postgresql parser for nu…
gcca Apr 19, 2021
c51b670
[feature/table-from-postgresl-sqlite] update postgresql to manage cha…
gcca Apr 20, 2021
1a0ae28
[feature/table-from-postgresl-sqlite] add order by argumento to selec…
gcca Apr 21, 2021
2956ea2
[feature/table-from-postgresl-sqlite] check has_next using count(*) t…
gcca Apr 21, 2021
7267c9c
[feature/table-from-postgresl-sqlite] update sqlite provider to consi…
gcca Apr 21, 2021
6f1c5fc
[feature/table-from-postgresl-sqlite] remove some tries to fix postgr…
gcca Apr 21, 2021
86a009b
Merge remote-tracking branch 'blazingdb/branch-0.20' into feature/tab…
gcca Apr 21, 2021
ec74ff3
Merge branch 'feature/table-from-postgresl-sqlite' of github.com:gcca…
gcca Apr 26, 2021
62d0cfb
[feature/table-from-postgresl-sqlite] update changelog
gcca May 4, 2021
4099410
Merge remote-tracking branch 'upstream/branch-0.20' into feature/tabl…
gcca May 4, 2021
1ab0d2a
[feature/table-from-postgresl-sqlite] update changelog
gcca May 4, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions engine/src/cython/engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ std::pair<std::vector<ral::io::data_loader>, std::vector<ral::io::Schema>> get_l
#ifdef POSTGRESQL_SUPPORT
parser = std::make_shared<ral::io::postgresql_parser>();
auto sql = ral::io::getSqlInfo(args_map);
provider = std::make_shared<ral::io::postgresql_data_provider>(sql, 0, 0);
provider = std::make_shared<ral::io::postgresql_data_provider>(sql, total_number_of_nodes, self_node_idx);
isSqlProvider = true;
#else
throw std::runtime_error("ERROR: This BlazingSQL version doesn't support PostgreSQL integration");
#endif
isSqlProvider = true;
} else if(fileType == ral::io::DataType::SQLITE) {
#ifdef SQLITE_SUPPORT
parser = std::make_shared<ral::io::sqlite_parser>();
Expand Down Expand Up @@ -201,7 +201,7 @@ std::shared_ptr<ral::cache::graph> runGenerateGraph(uint32_t masterIndex,
{
using blazingdb::manager::Context;
using blazingdb::transport::Node;

auto& communicationData = ral::communication::CommunicationData::getInstance();

std::vector<Node> contextNodes;
Expand Down
Loading