You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@madlib.apache.org by GitBox <gi...@apache.org> on 2019/09/30 22:02:38 UTC

[GitHub] [madlib] fmcquillan99 opened a new pull request #445: updated DL preprocessor docs for bytea

fmcquillan99 opened a new pull request #445: updated DL preprocessor docs for bytea
URL: https://github.com/apache/madlib/pull/445
 
 
   Since we changed to bytea for packed dep and indep vars, needed to update the users docs to correspond.
   
   For weird and unknown doxygen issues, @kaknikhil & I learned that 
   ```
   DROP AGGREGATE IF EXISTS MADLIB_SCHEMA.agg_array_concat(anyarray);
   CREATE AGGREGATE MADLIB_SCHEMA.agg_array_concat(anyarray) (
      SFUNC = array_cat,
      PREFUNC = array_cat,
      STYPE = anyarray
      );
   ```
   works but 
   ```
   DROP AGGREGATE IF EXISTS MADLIB_SCHEMA.agg_array_concat(anyarray);
   CREATE AGGREGATE MADLIB_SCHEMA.agg_array_concat(anyarray) (
      SFUNC = array_cat,
      STYPE = anyarray,
      PREFUNC = array_cat
      );
   ```
   results in a blank page being published.  This is not root cause, but the docs do compile by doing this.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services