-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extension version pg_bulkload mistake #141
Comments
You mean the following results, don't you? It seems a little strange.
|
PR: #142 |
I see the PR but, I have a doubt, you would be force for each version to change manually this. |
Changed the method of generating pg_bulkload.sql and getting the version number of pg_bulkload.
Hi @cesarjorgemartinez ,thank you for your coment. |
Great! |
Thank you for your confirmation. |
* Fixed incorrect version display of pg_bulkload Previously, pg_bulkload always showed the wrong version after registering to the DB. It will confuses users. So, changed the method of generating pg_bulkload--${version}.sql and getting the version number of pg_bulkload. Reported-by : cesarjorgemartinez * Removed unnecessary file pg_bulkload does not support upgrades using ALTER EXTENSION, and since PostgreSQL 9.2, pg_bulkload is registered to DB using CREATE EXTENSION. So. we removed the manual registration method. * Added the description how to upgrade pg_bulkload. * Removed unnecessary lines from the Makefile and SPECS file Removed PostgreSQL 9.6 SPEC file. --------- Co-authored-by: mikecaat <35882227+mikecaat@users.noreply.github.com> Co-authored-by: Masahiro Ikeda <masahiro.ikeda.us@hco.ntt.co.jp>
I compile the pg_bulkload using (version 3.1.20 https://github.com/ossc-db/pg_bulkload/releases/download/VERSION3_1_20/pg_bulkload-3.1.20.tar.gz):
USE_PGXS=1 make
USE_PGXS=1 make install
And when I install the extension:
create extension pg_bulkload;
Always show the version 1.0. Then I don't known if exists any fails or I missing any steps.
The text was updated successfully, but these errors were encountered: