src/translate.jl
changed.
src/iterate.jl
changed.
Other files ignored by Codecov
coverage/submit.jl
has changed.
29 | 29 | function translate_default(location, function_type, SQL_call) |
|
30 | 30 | result = :( |
|
31 | 31 | function translate_call($function_type, arguments...; _primary=true) |
|
32 | - | $SQLExpression($SQL_call, $map( |
|
32 | + | $SQLExpression($SQL_call, $map( |
|
33 | 33 | argument -> $translate(argument; _primary=_primary), |
|
34 | 34 | arguments |
|
35 | 35 | )...) |
|
36 | - | end |
|
36 | + | end |
|
37 | 37 | ) |
|
38 | 38 | result.args[2].args[1] = location |
|
39 | 39 | result |
118 | 118 | handle = statement.handle |
|
119 | 119 | schema = ntuple( |
|
120 | 120 | let handle = handle |
|
121 | - | column_number -> name_and_type(handle, column_number) |
|
122 | - | end, |
|
121 | + | column_number -> name_and_type(handle, column_number) |
|
122 | + | end, |
|
123 | 123 | sqlite3_column_count(handle) |
|
124 | 124 | ) |
|
125 | 125 | SQLiteCursor{NamedTuple{Tuple(map(first, schema)),Tuple{map(second, schema)...}}}(statement, Ref(status), Ref(0)) |
Files | Coverage |
---|---|
src | 89.64% |
Project Totals (9 files) | 89.64% |