
List of known NoSQL bugs:

* The parser() awk function does not work correctly on
  statements like:

  Column"string"

  where ``Column'' is a column name that will be replaced
  by the parser with $(n).
  As a workaround, such constructs must be changed into:

  Column "string"

* 'envtolist' and 'envtotable' print empty values for NOSQL_INSTALL,
  NOSQL_STDOUT and NOSQL_STDERR environment variables even if such names
  do not appare in their environment at all. I dunno where they come from!
  I suspect that, al least with mawk(1), referencing an undefined array
  element causes that element to become defined, although with an empty
  value. The effect of this behaviour, although annoying, should not be
  armful, as if the referenced element is not-null then it will appare on
  output with the correct value, while if it is null then it will show-up
  with an empty value.

