shinichi-takii / ddlparse

DDL parase and Convert to BigQuery JSON schema and DDL statements
https://pypi.org/project/ddlparse/
BSD 3-Clause "New" or "Revised" License
87 stars 29 forks source link

Add support inline comment #17

Closed shinichi-takii closed 6 years ago

shinichi-takii commented 6 years ago

Requirements

Add support inline comment.

Example DDL

CREATE TABLE Sample_Table (
  Col_01 number(50,1), -- comment
  Col_02 decimal(60,2)  -- comment
);