diff --git a/ast/ast.go b/ast/ast.go index 028c65b659..def0c22154 100644 --- a/ast/ast.go +++ b/ast/ast.go @@ -5,7 +5,7 @@ import ( "encoding/json" "math" - "github.com/kyleconroy/doubleclick/token" + "github.com/sqlc-dev/doubleclick/token" ) // Node is the interface implemented by all AST nodes. diff --git a/cmd/analyze/main.go b/cmd/analyze/main.go index 0bb119b5e6..6f2666aad6 100644 --- a/cmd/analyze/main.go +++ b/cmd/analyze/main.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) type testMetadata struct { diff --git a/cmd/fixall/main.go b/cmd/fixall/main.go index a3056d6dbe..7a1c6e7b81 100644 --- a/cmd/fixall/main.go +++ b/cmd/fixall/main.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) type testMetadata struct { diff --git a/cmd/fixparseerror2/main.go b/cmd/fixparseerror2/main.go index 29aa0af03e..d5440dfa13 100644 --- a/cmd/fixparseerror2/main.go +++ b/cmd/fixparseerror2/main.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) type testMetadata struct { diff --git a/cmd/fixremaining/main.go b/cmd/fixremaining/main.go index 52440f394f..26be703679 100644 --- a/cmd/fixremaining/main.go +++ b/cmd/fixremaining/main.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) type testMetadata struct { diff --git a/cmd/fixtruncated/main.go b/cmd/fixtruncated/main.go index 8cc536c9e8..7273361c46 100644 --- a/cmd/fixtruncated/main.go +++ b/cmd/fixtruncated/main.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) type testMetadata struct { diff --git a/cmd/generateast/main.go b/cmd/generateast/main.go index 7e22d27a6b..07ab6e1998 100644 --- a/cmd/generateast/main.go +++ b/cmd/generateast/main.go @@ -9,7 +9,7 @@ import ( "strings" "time" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) type testMetadata struct { diff --git a/cmd/testcase/main.go b/cmd/testcase/main.go index b1b8b1e542..6509cf5d17 100644 --- a/cmd/testcase/main.go +++ b/cmd/testcase/main.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) func main() { diff --git a/go.mod b/go.mod index 209ec7d64c..4172cae9be 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/kyleconroy/doubleclick +module github.com/sqlc-dev/doubleclick go 1.24.7 diff --git a/internal/explain/explain.go b/internal/explain/explain.go index 45dcd6b3ab..f43fab6800 100644 --- a/internal/explain/explain.go +++ b/internal/explain/explain.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/kyleconroy/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/ast" ) // Explain returns the EXPLAIN AST output for a statement, matching ClickHouse's format. diff --git a/internal/explain/expressions.go b/internal/explain/expressions.go index 9f4ac109b7..5d11809436 100644 --- a/internal/explain/expressions.go +++ b/internal/explain/expressions.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/kyleconroy/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/ast" ) func explainIdentifier(sb *strings.Builder, n *ast.Identifier, indent string) { diff --git a/internal/explain/format.go b/internal/explain/format.go index 96a4cccf54..f97d1acabb 100644 --- a/internal/explain/format.go +++ b/internal/explain/format.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/kyleconroy/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/ast" ) // FormatFloat formats a float value for EXPLAIN AST output diff --git a/internal/explain/functions.go b/internal/explain/functions.go index 28d886ec03..71a9e391b6 100644 --- a/internal/explain/functions.go +++ b/internal/explain/functions.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/kyleconroy/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/ast" ) func explainFunctionCall(sb *strings.Builder, n *ast.FunctionCall, indent string, depth int) { diff --git a/internal/explain/select.go b/internal/explain/select.go index 6e4d1d6f74..fc48b8769e 100644 --- a/internal/explain/select.go +++ b/internal/explain/select.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/kyleconroy/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/ast" ) func explainSelectWithUnionQuery(sb *strings.Builder, n *ast.SelectWithUnionQuery, indent string, depth int) { diff --git a/internal/explain/statements.go b/internal/explain/statements.go index e4e5ddbc0d..9722a3ab24 100644 --- a/internal/explain/statements.go +++ b/internal/explain/statements.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/kyleconroy/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/ast" ) func explainInsertQuery(sb *strings.Builder, n *ast.InsertQuery, indent string, depth int) { diff --git a/internal/explain/tables.go b/internal/explain/tables.go index 951285a6e4..9714001d81 100644 --- a/internal/explain/tables.go +++ b/internal/explain/tables.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/kyleconroy/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/ast" ) func explainTablesInSelectQuery(sb *strings.Builder, n *ast.TablesInSelectQuery, indent string, depth int) { diff --git a/lexer/lexer.go b/lexer/lexer.go index 9bc086a8d2..1159408bf2 100644 --- a/lexer/lexer.go +++ b/lexer/lexer.go @@ -8,7 +8,7 @@ import ( "unicode" "unicode/utf8" - "github.com/kyleconroy/doubleclick/token" + "github.com/sqlc-dev/doubleclick/token" ) // Lexer tokenizes ClickHouse SQL input. diff --git a/parser/explain.go b/parser/explain.go index 906efb8a60..4061856446 100644 --- a/parser/explain.go +++ b/parser/explain.go @@ -1,8 +1,8 @@ package parser import ( - "github.com/kyleconroy/doubleclick/ast" - "github.com/kyleconroy/doubleclick/internal/explain" + "github.com/sqlc-dev/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/internal/explain" ) // Explain returns the EXPLAIN AST output for a statement, matching ClickHouse's format. diff --git a/parser/expression.go b/parser/expression.go index adfe89540c..3b3f05a726 100644 --- a/parser/expression.go +++ b/parser/expression.go @@ -5,8 +5,8 @@ import ( "strconv" "strings" - "github.com/kyleconroy/doubleclick/ast" - "github.com/kyleconroy/doubleclick/token" + "github.com/sqlc-dev/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/token" ) // Operator precedence levels diff --git a/parser/parser.go b/parser/parser.go index 031165f261..431897f85f 100644 --- a/parser/parser.go +++ b/parser/parser.go @@ -8,9 +8,9 @@ import ( "strconv" "strings" - "github.com/kyleconroy/doubleclick/ast" - "github.com/kyleconroy/doubleclick/lexer" - "github.com/kyleconroy/doubleclick/token" + "github.com/sqlc-dev/doubleclick/ast" + "github.com/sqlc-dev/doubleclick/lexer" + "github.com/sqlc-dev/doubleclick/token" ) // Parser parses ClickHouse SQL statements. diff --git a/parser/parser_test.go b/parser/parser_test.go index 85f6be7376..502d03a2a7 100644 --- a/parser/parser_test.go +++ b/parser/parser_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/kyleconroy/doubleclick/parser" + "github.com/sqlc-dev/doubleclick/parser" ) // checkSkipped runs skipped todo tests to see which ones now pass.