postgresql/contrib/ltree
Peter Eisentraut a5b40d156e Mark commented out code as unused
There were many PG_GETARG_* calls, mostly around gin, gist, spgist
code, that were commented out, presumably to indicate that the
argument was unused and to indicate that it wasn't forgotten or
miscounted.  But keeping commented-out code updated with refactorings
and style changes is annoying.  So this commit changes them to

    #ifdef NOT_USED

blocks, which is a style already in use.  That way, at least the
indentation and syntax highlighting works correctly, making some of
these blocks much easier to read.

An alternative would be to just delete that code, but there is some
value in making unused arguments explicit, and some of this arguably
serves as example code for index AM APIs.

Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Reviewed-by: David Geier <geidav.pg@gmail.com>
Reviewed-by: Chao Li <li.evan.chao@gmail.com>
Reviewed-by: Dean Rasheed <dean.a.rasheed@gmail.com>
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://www.postgresql.org/message-id/flat/328e4371-9a4c-4196-9df9-1f23afc900df%40eisentraut.org
2026-01-22 12:44:07 +01:00
..
data Add ltree data type to contrib, from Teodor Sigaev and Oleg Bartunov. 2002-07-30 16:40:34 +00:00
expected Fix contrib/ltree's subpath() with negative offset. 2025-11-01 13:25:42 -04:00
sql Fix contrib/ltree's subpath() with negative offset. 2025-11-01 13:25:42 -04:00
.gitignore Support "make check" in contrib 2011-04-25 22:27:11 +03:00
_ltree_gist.c Mark commented out code as unused 2026-01-22 12:44:07 +01:00
_ltree_op.c Use more palloc_object() and palloc_array() in contrib/ 2025-12-05 16:40:26 +09:00
crc32.c ltree: fix case-insensitive matching. 2025-12-16 12:57:00 -08:00
crc32.h Add support for binary I/O of ltree, lquery, and ltxtquery types. 2020-04-01 17:31:29 -04:00
lquery_op.c ltree: fix case-insensitive matching. 2025-12-16 12:57:00 -08:00
ltree--1.0--1.1.sql Make contrib modules' installation scripts more secure. 2020-08-10 10:44:42 -04:00
ltree--1.1--1.2.sql Add support for binary I/O of ltree, lquery, and ltxtquery types. 2020-04-01 17:31:29 -04:00
ltree--1.1.sql Update extensions with GIN/GIST support for parallel query. 2016-06-14 13:34:37 -04:00
ltree--1.2--1.3.sql Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
ltree.control Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
ltree.h Fix multibyte issue in ltree_strncasecmp(). 2025-12-16 10:35:40 -08:00
ltree_gist.c Mark commented out code as unused 2026-01-22 12:44:07 +01:00
ltree_io.c Use more palloc_object() and palloc_array() in contrib/ 2025-12-05 16:40:26 +09:00
ltree_op.c Use more palloc_object() and palloc_array() in contrib/ 2025-12-05 16:40:26 +09:00
ltreetest.sql Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
ltxtquery_io.c Fix typos and inconsistencies in code and comments 2026-01-05 09:19:15 +09:00
ltxtquery_op.c Fix multibyte issue in ltree_strncasecmp(). 2025-12-16 10:35:40 -08:00
Makefile Add hash support functions and hash opclass for contrib/ltree. 2024-03-21 18:27:49 -04:00
meson.build Update copyright for 2026 2026-01-01 13:24:10 -05:00