Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The upgrade to v1.13 has a minor problem with some leftover functions. The issue can be fixed with the following commands before running the regular upgrade processcommand.

Code Block
languagebash
psql $DB<<DB_NAMENAME>> -c "DROP FUNCTION IF EXISTS ${SCHEMA}<<SCHEMA>>.knn(VARCHAR);"
psql $DB<<DB_NAMENAME>> -c "DROP FUNCTION IF EXISTS ${SCHEMA}<<SCHEMA>>.knn();"

DB<<DB_NAME NAME>> denotes the name of the database.

SCHEMA <<SCHEMA>> denotes the name of the madlib schema.

...