• R/O
  • HTTP
  • SSH
  • HTTPS

ludia_funcs: List of commits

This is the main ludia_funcs git repository.


RSS
Rev. Time Author
d220429 master 2021-10-11 13:10:56 Fujii Masao

Document that ludia_funcs 1.0 was confirmed to work with PostgreSQL 14.

Author: Ken Kato
Discussion: https://osdn.net/projects/ludiafuncs/lists/archive/hackers/2021-October/000055.html

47c654f 2021-07-14 23:02:30 Fujii Masao

Update copyright for 2021.

a285679 2021-07-14 22:31:10 Fujii Masao

Add textporter_exit_on_segv parameter.

If off, which is the default, segmentation fault caused by textporter
will lead to the server crash. If on, only the current session calling
pgs2textporter1 function and causing textpoter to throw
segmentation fault will be terminated.

14448f8 2021-07-14 20:32:37 Fujii Masao

Update the URL of Travis-CI status badge.

This update is necessary because the CI platform was migrated
from travis-ci.org to travis-ci.com.

80aaeb7 2021-07-14 08:37:36 Fujii Masao

Update .travis.yml to ask Travis CI to build and test on PostgreSQL 14.

0c6e17e 2020-11-04 13:30:45 Fujii Masao

Document that ludia_funcs 1.0 was confirmed to work with PostgreSQL 13.

Author: Shinya Kato
Discussion: https://osdn.net/projects/ludiafuncs/lists/archive/hackers/2020-November/000053.html

273719e 2020-10-15 10:48:21 Fujii Masao

Make Travis CI run installcheck regression test.

a436f96 2020-10-07 02:53:11 Fujii Masao

Update .travis.yml to ask Travis CI to build and test on PostgreSQL 13.

46536e8 2020-02-26 18:39:41 Fujii Masao

Support terse logging in enable_debug.

This commit allows us to set enable_debug option to 'terse' as
a setting value. When it's 'terse', the contents dealt in ludia_funcs
internal functions are excluded from the debug messages.
For example, if it's set to 'on', not only the name of function
pgs2norm() but also the target string that the function normalizes
are included in the debug messages. But if it's 'terse', only the
terse information like function name is output.

Previously we set enable_debug to 'on', in order to check
whether recheck is skipped or not in the regression test.
But the order of the contents in the debug messages varied
depending on the block size in PostgreSQL server. Which
would lead to unexpected failure of regression test in PostgreSQL
built with non-default block size. In order to stabilize the result
of this regression test, this patch make the test use debug level
'terse'.

Author: Torikoshi Atsushi
Reviewed-by: Fujii Masao
Discussion: https://osdn.net/projects/ludiafuncs/lists/archive/hackers/2020-February/000046.html

3b76bda 2020-02-07 18:21:34 Fujii Masao

Update copyright for 2020.

Author: Torikoshi Atsushi
Discussion: https://osdn.net/projects/ludiafuncs/lists/archive/hackers/2020-February/000044.html

934d5d6 2020-02-05 20:50:26 Fujii Masao

Add README.mb for the mirror ludia_funcs GIT repository at github.

e95ad85 2020-02-04 19:12:39 Fujii Masao

Make regression test for textporter work fine on PostgreSQL 12 or later.

Previously the regression test for textporter failed when it ran on
PostgreSQL 12 or later. The cause of this issue is that commit d8594d1
in PostgreSQL changed the outputs of textporter regression test results.
This leads the existing expected file that depends on PostgreSQL 11
or before not to match with the output of regression test on 12,
and then caused the regression test to fail.

To fix the above issue, this commit adds textporter_1.source as
a variant comparison file, which contains the expected output of
textporter regression test on 12 or later.

Author: Torikoshi Atsushi
Reviewed-by: Fujii Masao
Discussion: https://osdn.net/projects/ludiafuncs/lists/archive/hackers/2020-February/000040.html

f8bf103 2019-10-04 17:00:39 Fujii Masao

Add *.bc to .gitignore.

a8c9daa v1.0-20191004 2019-10-04 13:47:54 Fujii Masao

Update PGS2_LAST_UPDATE to "2019.10.04".

9faae9f 2019-10-04 13:43:04 Fujii Masao

Update documentations.

This commit describes that ludia_funcs 1.0 was confirmed to work with
PostgreSQL12. Also it updates release note and add news about release
of 1.0-20191004.

ceb8f19 2019-10-04 12:38:19 Fujii Masao

Add a .travis.yml file to tell Travis CI what to build and test.

26aa7c5 2019-10-04 11:26:37 Fujii Masao

Add ludia_funcs Development Group copyright.

9dd1402 2019-08-23 11:47:45 MasaoFujii

Don't use pnstrdup() to duplicate non-string data area.

Previously pnstrdup() was used to duplicate the cached result of pgs2norm().
This was improper usage because that cached result is not string. This and
the change of pnstrdup() by the commit 82c117cb90 in PostgreSQL caused
pgs2norm() to emit a segmentation fault.

This commit changes pgs2norm() so that it duplicates the cached result by
using the original logic instead of pnstrdup().

a741b5c 2019-08-22 22:32:54 MasaoFujii

Make ludia_funcs work with PostgreSQL 12dev or later.

3b4521f 2019-08-22 22:05:05 MasaoFujii

Update the URL of Ludia project.

e65e74c 2015-09-10 14:27:12 Masahiko Sawada

Change the URL link to the source archive file of version 20150910 in top page.

353fe6b v1.0-20150910 2015-09-09 13:37:18 MasaoFujii

Add fragment identifier to the link to release note, in index.html.

53b7ccb 2015-09-09 13:26:48 MasaoFujii

Fix corrupted style of source comment.

847e47a 2015-09-09 11:24:45 Masahiko Sawada

Avoid the redundant declaration of the function prototypes.

When the server version is 9.4 or later, PG_FUNCTION_INFO_V1 macro
always creates the prototype of its given function, so we avoid
declaring the prototypes of all the global functions for ludia_funcs.
The function prototypes are there only when the server version is 9.3
or before.

1cffc0a 2015-09-08 22:27:55 Masahiko Sawada

Update PGS2_LAST_UPDATE.

Update to '2015.09.10'.

a1d34c1 2015-09-08 22:27:55 Masahiko Sawada

Fix typo in html/ludia_funcs.html.

40ad127 2015-09-08 22:27:43 Masahiko Sawada

Add the information about release note into index.html.

5ed0481 2015-09-08 22:14:37 Masahiko Sawada

Change the naming rule of the source archive file.

This makes the name of the source archive file contain
the version number of pg_bigm.

83dc159 2015-09-08 22:02:28 Masahiko Sawada

Update the documentation so that supporting the other PostgreSQL version.

Previously the documentation are assumed using PostgreSQL 9.1 only.

8cc87e7 2015-09-08 20:33:16 Masahiko Sawada

Add the news about the release of latest version.

The ludia_funcs-20150910 is released.

Show on old repository browser