AQuery Database
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Bill Sun d4d11286d5
minor change
3 years ago
aquery_parser q 3 years ago
docs C++ infrastructure 3 years ago
engine minor change 3 years ago
msc-plugin update 3 years ago
msvs-py update 3 years ago
server update 3 years ago
.gitignore update 3 years ago
LICENSE Initial commit (mo_sql_parsing) 3 years ago
Makefile Single Table query part 1 3 years ago
README.md update 3 years ago
csv.h q 3 years ago
header.cxx q 3 years ago
mmw.cpp Group by 3 years ago
moving_avg.a minor change 3 years ago
moving_avg.csv Order by, on-demand assumptions, bugfixes 3 years ago
nyctx100.csv C++ infrastructure 3 years ago
out.cpp update 3 years ago
out_attempt1.cpp bug fixesy 3 years ago
prompt.py update 2 3 years ago
q.sql Added multi-query support 3 years ago
q1.sql update 3 years ago
requirements.txt update 3 years ago
stock.a update 2 3 years ago
test.csv C++ infrastructure 3 years ago

README.md

AQuery++ DB

AQuery++ Database is an In-Memory Column-Store Database that incorporates compiled query execution. Compiler frontend built on top of mo-sql-parsing.

Roadmap

  • SQL Parser -> AQuery Parser (Front End)
  • AQuery-C++ Compiler (Back End)
    • Schema and Data Model
    • Data acquisition/output from/to csv file
    • Single table queries
      • Projections and Single Table Aggregations
      • Group by Aggregations
      • Filters
      • Order by
      • Assumption
      • Flatten
    • Multi-table
      • Join
    • Subqueries
  • -> Optimizing Compiler

TODO:

  • C++ Meta-Programming: Elimilate template recursions as much as possible.
  • IPC: Better ways to communicate between Interpreter (Python) and Executer (C++).
    • Sockets? stdin/stdout capture?

Introduction

Requirements

Usage