Column Store
ForeignKey.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace Parser {
6  struct foreign_key {
7  std::string from;
8  std::string table;
9  std::string to;
10  };
11 }
Parser
Definition: Column.h:6
Parser::foreign_key::to
std::string to
Definition: ForeignKey.h:9
Parser::foreign_key::table
std::string table
Definition: ForeignKey.h:8
Parser::foreign_key
Definition: ForeignKey.h:6
Parser::foreign_key::from
std::string from
Definition: ForeignKey.h:7