Skip to content

Commit 5220d19

Browse files
quinnjclaude
andcommitted
Fix syntax error: add missing ) in function signature
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 6f09f0b commit 5220d19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/load.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const SQLTYPES = Dict{Type, String}(
3535

3636
checkdupnames(names) = length(unique(map(x->lowercase(String(x)), names))) == length(names) || error("duplicate case-insensitive column names detected; sqlite doesn't allow duplicate column names and treats them case insensitive")
3737

38-
function createtable(conn::Connection, nm::AbstractString, sch::Tables.Schema; debug::Bool=false, quoteidentifiers::Bool=true, createtableclause::AbstractString="CREATE TABLE", coltypes=Dict(), columnsuffix=Dict(), auto_increment_primary_key_name::Union{Nothing,AbstractString}=nothing
38+
function createtable(conn::Connection, nm::AbstractString, sch::Tables.Schema; debug::Bool=false, quoteidentifiers::Bool=true, createtableclause::AbstractString="CREATE TABLE", coltypes=Dict(), columnsuffix=Dict(), auto_increment_primary_key_name::Union{Nothing,AbstractString}=nothing)
3939
names = sch.names
4040
checkdupnames(names)
4141
types = [sqltype(T, coltypes, names[i]) for (i, T) in enumerate(sch.types)]

0 commit comments

Comments
 (0)