A work-in-progress SQL parser written in TypeScript
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.

12345678910111213141516
  1. import { Alias } from "./ast/alias";
  2. import { Binary } from "./ast/binary";
  3. import { Identifier } from "./ast/identifier";
  4. import { Number as _Number } from "./ast/number";
  5. import { SelectStatement } from "./ast/selectStatement";
  6. export * from "./ast/alias";
  7. export * from "./ast/binary";
  8. export * from "./ast/identifier";
  9. export * from "./ast/number";
  10. export * from "./ast/selectStatement";
  11. export type Primary = _Number | Identifier;
  12. export type Secondary = Primary | Alias;
  13. export type Statement = SelectStatement;
  14. export type Expr = Secondary | Binary;