Skip to content

Commit

Permalink
Changed the procedure call for PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
Кузнецов Владимир Васильевич committed Feb 19, 2024
1 parent 8ddddca commit 469193f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backends/postgresql/statement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ std::string postgresql_statement_backend::get_parameter_name(int index) const
std::string postgresql_statement_backend::rewrite_for_procedure_call(
std::string const & query)
{
std::string newQuery("select ");
std::string newQuery("call ");
newQuery += query;
return newQuery;
}
Expand Down

0 comments on commit 469193f

Please sign in to comment.