Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jmichalak committed Aug 28, 2024
1 parent a00c018 commit c33bc73
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
11 changes: 0 additions & 11 deletions pkg/sdk/data_metric_function_references_gen_integration_test.go

This file was deleted.

3 changes: 0 additions & 3 deletions pkg/snowflake/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,8 @@ func (e *ViewSelectStatementExtractor) consumeColumns() {
if !ok {
return
}
fmt.Printf("%d: %s\n", e.pos, string(e.input[e.pos:]))
for {
isLast := e.consumeColumn()
fmt.Printf("%d: %s\n", e.pos, string(e.input[e.pos:]))
if isLast {
break
}
Expand Down Expand Up @@ -99,7 +97,6 @@ func (e *ViewSelectStatementExtractor) consumeColumn() (isLast bool) {
e.consumeSpace()
e.consumeToken("using")
e.consumeSpace()
fmt.Printf("%d: %s\n", e.pos, string(e.input[e.pos:]))
e.consumeIdentifierList()
if string(e.input[e.pos-2:e.pos]) == "))" {
isLast = true
Expand Down

0 comments on commit c33bc73

Please sign in to comment.