@@ -23,7 +23,7 @@ function create_entity!(new_object::IEntity,
2323end
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
2929Persists many instances to the database using PostgreSQL 'COPY'
@@ -159,9 +159,9 @@ function delete_entity_alike(filter_object::IEntity,
159159end
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
166166Execute a query and with the given arguments returns a dataframe
167167"""
@@ -174,11 +174,11 @@ function execute_plain_query(query_string::String,
174174end
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
183183Execute a query and with the given arguments and convert the rows to the given
184184data_type in the same way that `retrieve_entity` would do it.
0 commit comments