UWHustle / hustle-in-Rust-now-defunct

Hustle
GNU General Public License v3.0
7 stars 1 forks source link

Create Table #53

Closed srora closed 5 years ago

srora commented 5 years ago

Support Create Table and Insert Into queries in execution engine. We should be able to run the following queries :

      CREATE TABLE table_name (
      column_1 data_type_1,
      column_2 data_type_2,
      ...
      );
      INSERT INTO table_name
      VALUES (value1,  value2, ...);
johnchronis commented 5 years ago

55 updates the catalog that is maintained in the optimizer when a create or drop table query is optimized.

srora commented 5 years ago

Issue : "Memory mapped can not have length 0."

johnchronis commented 5 years ago

@srora can you elaborate? when are you getting this error?