From d065be0450912ce38276edcf00a0b218e4d6b7f9 Mon Sep 17 00:00:00 2001 From: sadish <> Date: Tue, 2 Dec 2025 15:48:45 -0500 Subject: [PATCH 1/2] updated SQL dialect inference --- .gitignore | 3 +++ src/connections.jl | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..112e02e3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# VS Code settings +.vscode/ +.DS_Store \ No newline at end of file diff --git a/src/connections.jl b/src/connections.jl index 2b7f908b..9718d27d 100644 --- a/src/connections.jl +++ b/src/connections.jl @@ -17,6 +17,9 @@ end SQLConnection(raw::RawConnType; catalog) where {RawConnType} = SQLConnection{RawConnType}(raw, catalog = catalog) +SQLDialect(::Type{SQLConnection{RawConnType}}) where {RawConnType} = + SQLDialect(RawConnType) + function Base.show(io::IO, conn::SQLConnection) print(io, "SQLConnection(") show(io, conn.raw) From 351a89260b35b003a4ef721186195d8f005fa166 Mon Sep 17 00:00:00 2001 From: sadish <109114416+sadish-d@users.noreply.github.com> Date: Tue, 2 Dec 2025 15:47:20 -0500 Subject: [PATCH 2/2] Delete .gitignore --- .gitignore | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 112e02e3..00000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# VS Code settings -.vscode/ -.DS_Store \ No newline at end of file