Skip to content

Commit 2eef043

Browse files
committed
Improve doc
1 parent 396b630 commit 2eef043

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/exposed-functions-from-submodules.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function create_entity!(new_object::IEntity,
2323
end
2424

2525
"""
26-
function create_in_bulk_using_copy(entities::Vector{T},
26+
create_in_bulk_using_copy(entities::Vector{T},
2727
dbconn::LibPQ.Connection) where T <: IEntity
2828
2929
Persists many instances to the database using PostgreSQL 'COPY'
@@ -159,9 +159,9 @@ function delete_entity_alike(filter_object::IEntity,
159159
end
160160

161161
"""
162-
execute_plain_query(query_string::String,
163-
query_args::Union{Vector,Missing},
164-
dbconn::LibPQ.Connection)
162+
execute_plain_query(query_string::String,
163+
query_args::Union{Vector,Missing},
164+
dbconn::LibPQ.Connection)
165165
166166
Execute a query and with the given arguments returns a dataframe
167167
"""
@@ -174,11 +174,11 @@ function execute_plain_query(query_string::String,
174174
end
175175

176176
"""
177-
execute_query_and_handle_result(query_string::String,
178-
data_type::DataType,
179-
query_args::Union{Vector,Missing},
180-
retrieve_complex_props::Bool,
181-
dbconn::LibPQ.Connection)
177+
execute_query_and_handle_result(query_string::String,
178+
data_type::DataType,
179+
query_args::Union{Vector,Missing},
180+
retrieve_complex_props::Bool,
181+
dbconn::LibPQ.Connection)
182182
183183
Execute a query and with the given arguments and convert the rows to the given
184184
data_type in the same way that `retrieve_entity` would do it.

0 commit comments

Comments
 (0)