paleolimbot commented on code in PR #463:
URL: https://github.com/apache/arrow-adbc/pull/463#discussion_r1108911899
##########
c/driver/sqlite/sqlite.c:
##########
@@ -150,7 +150,7 @@ AdbcStatusCode SqliteDatabaseRelease(struct AdbcDatabase*
database,
if (connection_count > 0) {
SetError(error, "AdbcDatabaseRelease: %ld open connections when released",
- connection_count);
+ (long)connection_count);
Review Comment:
Because of
```
* checking whether package 'adbcsqlite' can be installed ... WARNING
Found the following significant warnings:
sqlite.c:152:45: warning: format '%ld' expects argument of type 'long
int', but argument 3 has type 'size_t' {aka 'long long unsigned int'}
[-Wformat=]
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]