Skip to content
Snippets Groups Projects
Commit b3e9314e authored by expan's avatar expan
Browse files

test seg fault

parent c29330f3
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,7 @@ cons_cell* create_cross_operator(cons_cell* ra1, cons_cell* ra2) {
// For when you want to assign column names to another name
// THIS DOESN"T WORK FOR JASON"S COMPILER SO REVERTING BACK BUT LEFT HERE IN CASE WE NEED IT LATER XD
cons_cell* create_rename_operator(cons_cell* col, cons_cell* next) {
cons_cell* original_cons = create_cons_cell(col, next);
cons_cell* original_cons = create_cons_cell(NULL, NULL);//col, next);
char operator[7] = "RENAME\0";
cons_cell* operator_cons = create_cons_cell_w_atom(operator, original_cons);
return operator_cons;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment