Skip to content
Snippets Groups Projects
Commit fe718a5a authored by Stephen R. van den Berg's avatar Stephen R. van den Berg
Browse files

pgsql: Inline the various big_query() variants.

parent a45c4af2
No related branches found
No related tags found
No related merge requests found
...@@ -2047,7 +2047,7 @@ private inline void throwdelayederror(object parent) { ...@@ -2047,7 +2047,7 @@ private inline void throwdelayederror(object parent) {
//! //!
//! @seealso //! @seealso
//! @[big_query()], @[big_typed_query()], @[Sql.Sql], @[Sql.sql_result] //! @[big_query()], @[big_typed_query()], @[Sql.Sql], @[Sql.sql_result]
/*semi*/final .pgsql_util.sql_result streaming_query(string q, /*semi*/final inline .pgsql_util.sql_result streaming_query(string q,
void|mapping(string|int:mixed) bindings) { void|mapping(string|int:mixed) bindings) {
return big_query(q,bindings); return big_query(q,bindings);
} }
...@@ -2057,7 +2057,7 @@ private inline void throwdelayederror(object parent) { ...@@ -2057,7 +2057,7 @@ private inline void throwdelayederror(object parent) {
//! //!
//! @seealso //! @seealso
//! @[big_query()], @[Sql.Sql], @[Sql.sql_result] //! @[big_query()], @[Sql.Sql], @[Sql.sql_result]
/*semi*/final .pgsql_util.sql_result big_typed_query(string q, /*semi*/final inline .pgsql_util.sql_result big_typed_query(string q,
void|mapping(string|int:mixed) bindings) { void|mapping(string|int:mixed) bindings) {
return big_query(q,bindings,1); return big_query(q,bindings,1);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment