Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
36 check-ins occurring around 1e03cb233c4d298e.
2018-10-28
| ||
11:53 | Forward-ported all of the differences between MySQL++ 3.2.1 (the point where libtabula originally forked off) and the current trunk version, which includes changes made after the release of MySQL++ 3.2.4. Leaf check-in: 6c22637ceb user: tangent tags: trunk | |
11:08 | Dropped throw-specs, that being one of the things we always wanted to do for "MySQL++ 4.0". This obviates the porting of the MAY_THROW() stuff from MySQL++ 3.2.x. check-in: bc21e10c05 user: tangent tags: trunk | |
10:47 | Updated the Doxyfile.in files for Doxygen 1.8.14. check-in: f3a0657c56 user: tangent tags: trunk | |
2018-10-27
| ||
07:30 | Fixed references to README-Mac-OS-X.md check-in: e8696effde user: tangent tags: trunk | |
07:27 | Renamed README-Mac-OS-X.md to README-macOS.md. check-in: 5b39c725dd user: tangent tags: trunk | |
05:58 | Added logo check-in: 318e53556b user: tangent tags: trunk | |
2017-06-29
| ||
02:59 | Updated our HACKERS.md file to be consistent with the newly-Fossilized MySQL++ HACKERS.md file. check-in: 60f47c604d user: tangent tags: trunk | |
2016-02-06
| ||
10:22 | Whitespace fix check-in: fa93a19a0a user: tangent tags: trunk | |
10:02 | Added a missing library check-in: 9e56dd977c user: tangent tags: trunk | |
2015-12-21
| ||
02:10 | Added a FIXME comment check-in: 01622c2244 user: tangent tags: trunk | |
2015-12-18
| ||
23:29 | Copying the refcounted pointer to the FieldNames object in Row::operator =() instead of copying the field names. We can share the object. check-in: 1e03cb233c user: tangent tags: trunk | |
22:42 | Removed need for Impl parameter to ResultBase::fetch_row() and its derivatives. ResultBase can provide the implementation object to the DBDriver layer, which is the only code that needed this. check-in: 3f91a82d13 user: tangent tags: trunk | |
22:24 | STL on OS X can't cope with vector::at() assignments when the space has only been set aside with vector::reserve(). It wants either a resize() call to set the space aside definitely, or push_back() to extend the vector into the reserved space. (This is probably a sanity check like the old SafeSTL, rather than an actual memory bug, but it has the same effect as a crash.) check-in: 24d069b506 user: tangent tags: trunk | |
2015-09-11
| ||
19:04 | Simplified the C++ feature testing mechanism some check-in: 05f15e2b1c user: etr tags: trunk | |
18:47 | Moved the configure_file() calls to the bottom of the top-level CMakeLists.txt file so they're after the recently-added C++11 tests. Otherwise, the wrong values get stored in src/config.h, and it can toggle on you, too. check-in: 650133871e user: etr tags: trunk | |
18:41 | Added another C++11 test using the same mechanism from the previous one, this time for the cbegin/cend iterators, required on EL7, but which break the build on EL5's default GCC 4.1.2 compiler. Now we use them if present, and not if not. check-in: 9069ab8ffb user: etr tags: trunk | |
18:30 | Added a test for C++11's "long long" data type, which we use in defining sql_* data types. Previously, we blindly assumed the C++ compiler also supported C99's "long long" even though C++98 and C++03 don't require it, which in turn required a couple of levels of fall-back for the cases where the C++ compiler didn't have that extension. Now that it's finally part of C++, we can just check for it. check-in: dd77d4c60e user: etr tags: trunk | |
2015-09-03
| ||
14:37 | . check-in: 22689bd7dc user: etr tags: trunk | |
2015-08-15
| ||
10:11 | Fixed some errors introduced in the recent merge check-in: 7e59757bd5 user: tangent tags: trunk | |
09:35 | Merged row-pimpl branch into trunk: moves one of the last few remaining MySQLisms on the trunk down into the MySQLDBDriver layer. check-in: be382a7009 user: tangent tags: trunk | |
09:32 | Merged trunk changes in Closed-Leaf check-in: 4e189f92a7 user: tangent tags: row-pimpl | |
09:24 | Removed a FIXME comment: its proposed "fix" doesn't work. check-in: 381f8225d9 user: tangent tags: row-pimpl | |
09:21 |
The crash that prompted the creation of the row-pimpl branch was due to calling
Row.size() before Row was initialized. This old MYSQL_ROW base implementation
copes with this, but the new branch will try to dereference a null pointer to its
nonexistent implementation object. Guarding this and a few other paths
so we don't try to use that smart pointer if we aren't initialized yet.
(This change should have been made on the row-pimpl branch, but it also works against trunk, where it amounts to belt-and-suspenders.) check-in: bd141d86c6 user: tangent tags: trunk | |
09:15 | Documented the method for enabling a debug build on *ix check-in: 2a3b9252e1 user: tangent tags: trunk | |
09:10 | Merged trunk changes in check-in: d80e2d46a2 user: tangent tags: row-pimpl | |
09:09 | Added lldb to the list of tools exrun can make use of, so we don't have to install gdb on OS X. Also made a few other tweaks to it while in there. check-in: 21b6f7c6f5 user: tangent tags: trunk | |
08:51 | Merged dtest-to-ctest branch into trunk. (It only had to branch to avoid a fork.) check-in: 518f8d3962 user: tangent tags: trunk | |
08:50 | First cut at making Row take a Row::Impl as its first argument instead of a MYSQL_ROW, with all the MySQL C API conversion code moving into MySQLDBDriver. It builds, but test/array_index segfaults. check-in: f9e573bf51 user: tangent tags: row-pimpl | |
2015-08-14
| ||
23:45 | Fixed some overzealous "MySQL" -> "libtabula" references, and clarified some details about the development history in the CREDITS.md file. check-in: 9e7ac4fc37 user: tangent tags: trunk | |
23:34 | Fixed a bunch of references to *.txt, which should be *.md now. check-in: 91de75b98b user: tangent tags: trunk | |
23:23 | Typo fix in a comment check-in: ebb9a16682 user: tangent tags: trunk | |
19:02 | Added a CTest-based "test" top-level target which currently only runs dtest. We still have the top-level dtest target since "test" suppresses output, and that's important for debugging the integration tests. The plan now is to move the unit tests out of dtest into CTest, so that dtest returns to its classic (MySQL++ 2.x?) form, doing integration tests only. Closed-Leaf check-in: 869873f020 user: etr tags: dtest-to-ctest | |
18:54 | The dtest script now returns nonzero on error, so callers can tell whether it succeeded. The reason will be clear soon. check-in: 940bd74363 user: etr tags: dtest-to-ctest | |
06:23 | Squished a clang warning about an unused parameter reported on the MySQL++ mailing list by João M. S. Silva. check-in: d076442415 user: tangent tags: trunk | |
06:08 | Merged mysql-type-info branch into trunk, now that dtest runs to completion on two major platforms and all FIXME comments are dealt with. check-in: ac763fd4ac user: tangent tags: trunk | |
06:05 | Merged the contents of a FIXME comment into the relevant Wishlist item. Closed-Leaf check-in: 06939e737d user: tangent tags: mysql-type-info | |