You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Peter Eisentraut
611806cd72
Add trailing commas to enum definitions
...
Since C99, there can be a trailing comma after the last value in an
enum definition. A lot of new code has been introducing this style on
the fly. Some new patches are now taking an inconsistent approach to
this. Some add the last comma on the fly if they add a new last
value, some are trying to preserve the existing style in each place,
some are even dropping the last comma if there was one. We could
nudge this all in a consistent direction if we just add the trailing
commas everywhere once.
I omitted a few places where there was a fixed "last" value that will
always stay last. I also skipped the header files of libpq and ecpg,
in case people want to use those with older compilers. There were
also a small number of cases where the enum type wasn't used anywhere
(but the enum values were), which ended up confusing pgindent a bit,
so I left those alone.
Discussion: https://www.postgresql.org/message-id/flat/386f8c45-c8ac-4681-8add-e3b0852c1620%40eisentraut.org
2 years ago
..
data
Add btree_gist support for enum types.
8 years ago
expected
Allow some exclusion constraints on partitions
2 years ago
sql
Allow some exclusion constraints on partitions
2 years ago
.gitignore
…
Makefile
Allow some exclusion constraints on partitions
2 years ago
btree_bit.c
Remove useless casts to (void *) in arguments of some system functions
2 years ago
btree_bool.c
Pre-beta mechanical code beautification.
3 years ago
btree_bytea.c
Revert "Add sortsupport for gist_btree opclasses, for faster index builds."
4 years ago
btree_cash.c
Use C library functions instead of Abs() for int64
3 years ago
btree_date.c
Remove unnecessary uses of Abs()
3 years ago
btree_enum.c
Revert "Add sortsupport for gist_btree opclasses, for faster index builds."
4 years ago
btree_float4.c
Use fabsf() instead of Abs() or fabs() where appropriate
3 years ago
btree_float8.c
Remove unnecessary uses of Abs()
3 years ago
btree_gist--1.0--1.1.sql
…
btree_gist--1.1--1.2.sql
Make contrib modules' installation scripts more secure.
5 years ago
btree_gist--1.2--1.3.sql
…
btree_gist--1.2.sql
…
btree_gist--1.3--1.4.sql
…
btree_gist--1.4--1.5.sql
Add btree_gist support for enum types.
8 years ago
btree_gist--1.5--1.6.sql
Update btree_gist extension for parallel query
5 years ago
btree_gist--1.6--1.7.sql
Fix gist_bool_ops to use gbtreekey2
4 years ago
btree_gist.c
Standardize error reports in unimplemented I/O functions.
3 years ago
btree_gist.control
Add bool GiST opclass to btree_gist
4 years ago
btree_gist.h
Add trailing commas to enum definitions
2 years ago
btree_inet.c
Remove extraneous blank lines before block-closing braces
3 years ago
btree_int2.c
Remove unnecessary uses of Abs()
3 years ago
btree_int4.c
Remove unnecessary uses of Abs()
3 years ago
btree_int8.c
Use C library functions instead of Abs() for int64
3 years ago
btree_interval.c
Remove useless casts to (void *) in arguments of some system functions
2 years ago
btree_macaddr.c
Remove extraneous blank lines before block-closing braces
3 years ago
btree_macaddr8.c
Remove extraneous blank lines before block-closing braces
3 years ago
btree_numeric.c
Revert "Add sortsupport for gist_btree opclasses, for faster index builds."
4 years ago
btree_oid.c
Revert "Add sortsupport for gist_btree opclasses, for faster index builds."
4 years ago
btree_text.c
Fix results of index-only scans on btree_gist char(N) indexes.
4 years ago
btree_time.c
Remove unnecessary uses of Abs()
3 years ago
btree_ts.c
Remove unnecessary uses of Abs()
3 years ago
btree_utils_num.c
Remove useless casts to (void *) in arguments of some system functions
2 years ago
btree_utils_num.h
Remove unnecessary uses of Abs()
3 years ago
btree_utils_var.c
Remove useless casts to (void *) in arguments of some system functions
2 years ago
btree_utils_var.h
Make the order of the header file includes consistent.
6 years ago
btree_uuid.c
Remove useless casts to (void *) in arguments of some system functions
2 years ago
meson.build
Allow some exclusion constraints on partitions
2 years ago