orhankislal commented on issue #473: Release117 URL: https://github.com/apache/madlib/pull/473#issuecomment-607477196 > I tried the upgrade on my MacBookPro, from 1.16 to 1.17.0 and it threw an exception: > > ``` > ERROR: column p.prokind does not exist > LINE 12: p.prokind = 'a' AS proisagg > ^ > HINT: Perhaps you meant to reference the column "p.probin". > : ERROR : False > ``` > > This is with postgres 10.5: > PostgreSQL 10.5 on x86_64-apple-darwin17.7.0, compiled by Apple LLVM version 10.0.0 (clang-1000.11.45.2), 64-bit The prokind column does not exist in PG10 (it has `proisagg` and `proiswindow` for the same purposes). Since we only support 2 versions of postgres, we dropped PG10 and added PG12 with this release. Compiling etc. should still work for PG10 but the upgrade process does use this particular column.
---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services
