Skip to content

Commit

Permalink
Make pglast non-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mildbyte committed Oct 14, 2021
1 parent 111aa57 commit 69e2e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion splitgraph/core/sql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import re
from typing import Callable, Dict, List, Optional, Sequence, Tuple, Union

import pglast.node
from psycopg2.sql import SQL, Composed, Identifier
from splitgraph.config import SPLITGRAPH_META_SCHEMA
from splitgraph.core.sql._validation import (
Expand All @@ -14,6 +13,7 @@

try:
from pglast import parse_sql
import pglast.node
from pglast.node import Node, Scalar
from pglast.parser import ParseError
from pglast.stream import IndentedStream
Expand Down

0 comments on commit 69e2e39

Please sign in to comment.