[Tarantool-patches] [PATCH 08/15] sql: resurrect sql_bind_parameter_count() function
Nikita Pettik
korablev at tarantool.org
Thu Nov 7 04:04:48 MSK 2019
This function is present in sql/vdbeapi.c source file, its prototype is
missing in any header file. It makes impossible to use it. Let's add
prototype declaration to sql/sqlInt.h (as other parameter
setters/getters) and refactor a bit in accordance with our codestyle.
Need for #2592
---
src/box/sql/sqlInt.h | 6 ++++++
src/box/sql/vdbeapi.c | 10 +++-------
2 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/src/box/sql/sqlInt.h b/src/box/sql/sqlInt.h
index 553a48d60..e6d8bc2e3 100644
--- a/src/box/sql/sqlInt.h
+++ b/src/box/sql/sqlInt.h
@@ -679,6 +679,12 @@ int
sql_bind_zeroblob64(sql_stmt *, int,
sql_uint64);
+/**
+ * Return the number of wildcards that should be bound to.
+ */
+int
+sql_bind_parameter_count(sql_stmt *stmt);
+
/**
* Perform pointer parameter binding for the prepared sql
* statement.
diff --git a/src/box/sql/vdbeapi.c b/src/box/sql/vdbeapi.c
index a396f74d6..93b8906e5 100644
--- a/src/box/sql/vdbeapi.c
+++ b/src/box/sql/vdbeapi.c
@@ -1051,15 +1051,11 @@ sql_bind_zeroblob64(sql_stmt * pStmt, int i, sql_uint64 n)
return sql_bind_zeroblob(pStmt, i, n);
}
-/*
- * Return the number of wildcards that can be potentially bound to.
- * This routine is added to support DBD::sql.
- */
int
-sql_bind_parameter_count(sql_stmt * pStmt)
+sql_bind_parameter_count(sql_stmt *stmt)
{
- Vdbe *p = (Vdbe *) pStmt;
- return p ? p->nVar : 0;
+ struct Vdbe *p = (struct Vdbe *) stmt;
+ return p->nVar;
}
/*
--
2.15.1
More information about the Tarantool-patches
mailing list