Skip to content

Commit

Permalink
wip: compilation checkpoint after QualifiedName replacement with Colu…
Browse files Browse the repository at this point in the history
…mnName, TableName, etc. to disambiguate the types

columnname conversion is wrong
  • Loading branch information
agentm committed Sep 24, 2023
1 parent c2f083b commit 5c71df7
Show file tree
Hide file tree
Showing 4 changed files with 356 additions and 585 deletions.
2 changes: 1 addition & 1 deletion src/bin/SQL/Interpreter/Base.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ reserveds words' = do

-- does not consume trailing spaces
qualifiedNameSegment :: Text -> Parser Text
qualifiedNameSegment sym = T.toLower <$> string' sym
qualifiedNameSegment sym = T.toLower <$> string' sym

reservedOp :: Text -> Parser ()
reservedOp op = try (spaceConsumer *> string op *> notFollowedBy opChar *> spaceConsumer)
Expand Down
Loading

0 comments on commit 5c71df7

Please sign in to comment.