- 24 Jan, 2019 3 commits
-
-
Donald H. (Donnie) Pinkston, III authored
NanoDB client now supports shell commands of the form \cmd, which are handled within the InteractiveClient, not by the server. There are two commands: \help prints out useful help information \source filename.sql will run all commands contained in the file filename.sql There are surely interesting wrinkles to iron out. For example, if the sourced file contains an "EXIT" command then it will exit the client. Also, an error should probably terminate the evaluation of a sourced file, but currently it does not.
-
Donald H. (Donnie) Pinkston, III authored
-
Donald H. (Donnie) Pinkston, III authored
The nanodb.bat file now behaves in the same way that the *nix nanodb script works, so that NanoDB can be started from the Windows cmd shell.
-
- 22 Jan, 2019 1 commit
-
-
Donald H. (Donnie) Pinkston, III authored
A number of correctness tests are contained in the TestHeapTableFormat class. The tests are activated in the Maven test configuration.
-
- 21 Jan, 2019 1 commit
-
-
Billy Bloomquist authored
Added the designdoc and logistic info documents in a new directory.
-
- 18 Jan, 2019 1 commit
-
-
Donald H. (Donnie) Pinkston, III authored
The Buffer Manager concurrency test wasn't closing the data files it created, so they couldn't be deleted during the cleanup phase on Windows. This caused test failures on Windows but not on *nix.
-
- 17 Jan, 2019 2 commits
-
-
Donald H. (Donnie) Pinkston, III authored
Somehow when upgrading the NanoDB parser to ANTLR4, I forgot to include the SHOW STATS command. This is essential for the storage lab, so of course I added it back in as quickly as possible.
-
Donald H. (Donnie) Pinkston, III authored
Updated the nanodb script to properly handle being run under Git Bash. Needed to wrap the Java program with "winpty" when starting it from Git Bash. Also updated the Surefire configuration to not require all tests to pass before building a JAR file. There are a few tests that aren't working on Windows due to file-locking differences from *NIX.
-
- 16 Jan, 2019 1 commit
-
-
Michael A. Goulet authored
Some tests were failing on my box because I've got my locale set to Portuguese; this shouldn't be an issue, since the NanoDB tests are explicitly written in English. In order to fix Date parsing language- agnostically, I just explicitly set the locale to `Locale.ENGLISH`.
-
- 15 Jan, 2019 2 commits
-
-
Donald H. (Donnie) Pinkston, III authored
The Buffer Manager wasn't tied into the property-registry mechanism, so it wouldn't notice when the page-cache size was changed. This is now hooked together with a property-observer interface.
-
Donald H. (Donnie) Pinkston, III authored
-