Skip to content

Commit f3d2836

Browse files
committed
Merge pull request #61 from LinuxJedi/doc_fixes
Documentation updates
2 parents 7c6287e + 91da3ab commit f3d2836

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

docs/api/query.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,18 @@ attachsql_query_affected_rows()
121121
122122
.. versionadded:: 0.1.0
123123
124+
attachsql_query_warning_count()
125+
-------------------------------
126+
127+
.. c:function:: uint32_t attachsql_query_warning_count(attachsql_connect_t *con)
128+
129+
Returns the number of warnings for a query.
130+
131+
:param con: The connection object the query was on
132+
:returns: The number of warnings for the query result
133+
134+
.. versionadded:: 0.1.0
135+
124136
attachsql_query_info()
125137
----------------------
126138

docs/contributors/github.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,14 @@ If your commit fixes an issue you can add the following (for issue #93)::
7979

8080
Fixes libattachsql/libattachsql#93
8181

82-
Once all your commits are done you are now ready to push up to GitHub:
82+
Once all your commits are done a quick rebase may be needed to make sure your changes will merge OK with what is in master:
83+
84+
.. code-block:: bash
85+
86+
git fetch upstream
87+
git rebase upstream/master
88+
89+
This will give futher instructions as to what is needed to complete the rebase. You should now be ready to push up to GitHub:
8390

8491
.. code-block:: bash
8592

docs/introduction/version_history.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Version 0.3.0 Alpha (Not yet released)
1010
* Fixed infinite loop memory eater for test run when MySQL server not present (`Issue #48 <https://github.com/libattachsql/libattachsql/issues/48>`_)
1111
* Add UDS test case (`Issue #46 <https://github.com/libattachsql/libattachsql/issues/46>`_). Note, the ``MYSQL_SOCK`` env variable needs to be set to use it.
1212
* Add protocol compression support (`Issue #9 <https://github.com/libattachsql/libattachsql/issues/9>`_)
13-
* Additional documentation (`Issue #44 <https://github.com/libattachsql/libattachsql/issues/44>`_)
13+
* Additional documentation (`Issue #44 <https://github.com/libattachsql/libattachsql/issues/44>`_, `Issue #58 <https://github.com/libattachsql/libattachsql/issues/58>`_ and `Issue #59 <https://github.com/libattachsql/libattachsql/issues/59>`_)
1414
* Fixed case where multiple network writes could overwrite each other
1515
* Add optional SSL support using OpenSSL (`Issue #10 <https://github.com/libattachsql/libattachsql/issues/10>`_)
1616
* Fix valgrind reported problems (`Issue #55 <https://github.com/libattachsql/libattachsql/issues/55>`_)

0 commit comments

Comments
 (0)