camper/test
jordi fita mas 3768dd5082 Replace serial columns with ‘generated by default as identity’
I just found out that this is a feature introduced in PostgreSQL 10,
back in 2017.

Besides this being the standard way to define an “auto incremental
column” introduced in SQL:2003[0], called “identity columns”, in
PostgreSQL the new syntax has the following pros, according to [1]:

 * No need to explicitly grant usage on the generated sequence.
 * Can restart the sequence with only the name of the table and column;
   no need to know the sequence’s name.
 * An identity column has no default, and the sequence is better
   “linked” to the table, therefore you can not drop the default value
   but leave the sequence around, and, conversely, can not drop the
   sequence if the column is still defined.

Due to this, PostgreSQL’s authors recommendation is to use identity
columns instead of serial, unless there is the need for compatibility
with PostgreSQL older than 10[2], which is not our case.

According to PostgreSQL’s documentation[3], the identity column can be
‘GENERATED BY DEFAULT’ or ‘GENERATED ALWAYS’.  In the latter case, it is
not possible to give a user-specified value when inserting unless
specifying ‘OVERRIDING SYSTEM VALUE’.  I think this would make harder to
write pgTAP tests, and the old behaviour of serial, which is equivalent
to ‘GENERATED BY DEFAULT’, did not bring me any trouble so far.

[0]: https://sigmodrecord.org/publications/sigmodRecord/0403/E.JimAndrew-standard.pdf
[1]: https://www.2ndquadrant.com/en/blog/postgresql-10-identity-columns/
[2]: https://wiki.postgresql.org/wiki/Don't_Do_This#Don.27t_use_serial
[3]: https://www.postgresql.org/docs/15/sql-createtable.html
2023-09-26 19:35:16 +02:00
..
add_campsite.sql Add campsite map in SVG 2023-09-24 03:17:13 +02:00
add_campsite_type.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
add_home_carousel_slide.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
add_media.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
add_season.sql Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
add_service.sql Add the services page 2023-09-17 03:42:16 +02:00
add_services_carousel_slide.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
build_cookie.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
campsite.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
campsite_type.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
campsite_type_i18n.sql Add internationalization and localization of campsite types 2023-09-12 20:20:23 +02:00
change_password.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
check_cookie.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
color.sql Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
company.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
company_host.sql Use HTTP Host to establish the request’s company 2023-08-03 20:21:21 +02:00
company_user.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
country.sql Add company and company_user relations, along with their dependencies 2023-07-29 04:25:56 +02:00
country_code.sql Add company and company_user relations, along with their dependencies 2023-07-29 04:25:56 +02:00
country_i18n.sql Add company and company_user relations, along with their dependencies 2023-07-29 04:25:56 +02:00
currency.sql Add company and company_user relations, along with their dependencies 2023-07-29 04:25:56 +02:00
currency_code.sql Add company and company_user relations, along with their dependencies 2023-07-29 04:25:56 +02:00
current_company_id.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
current_user_cookie.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
current_user_email.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
edit_campsite.sql Add campsite map in SVG 2023-09-24 03:17:13 +02:00
edit_campsite_type.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
edit_media.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
edit_season.sql Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
edit_service.sql Add the services page 2023-09-17 03:42:16 +02:00
email.sql Add authentication relations, views, and functions for PostgreSQL 2023-07-22 01:59:12 +02:00
encrypt_password.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
ensure_role_exists.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
extensions.sql Add company and company_user relations, along with their dependencies 2023-07-29 04:25:56 +02:00
home_carousel.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
home_carousel_i18n.sql Make home page’s carousel manageable via the database 2023-09-15 01:05:38 +02:00
icon.sql Add the services page 2023-09-17 03:42:16 +02:00
input_is_valid.sql Add the form to update company’s tax details 2023-08-15 22:35:21 +02:00
input_is_valid_phone.sql Add the form to update company’s tax details 2023-08-15 22:35:21 +02:00
language.sql Add authentication relations, views, and functions for PostgreSQL 2023-07-22 01:59:12 +02:00
login.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
login_attempt.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
logout.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
media.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
media_content.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
media_path.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
media_type.sql Add media relation and add_media function 2023-09-08 20:03:26 +02:00
remove_home_carousel_slide.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
remove_service.sql Add function and HTTP handler to delete services 2023-09-26 17:29:49 +02:00
remove_services_carousel_slide.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
roles.sql Add authentication relations, views, and functions for PostgreSQL 2023-07-22 01:59:12 +02:00
schemas.sql Add authentication relations, views, and functions for PostgreSQL 2023-07-22 01:59:12 +02:00
season.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
service.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
service_i18n.sql Add the services page 2023-09-17 03:42:16 +02:00
services_carousel.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
services_carousel_i18n.sql Add the services page 2023-09-17 03:42:16 +02:00
set_cookie.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00
to_color.sql Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
to_integer.sql Add seasons’ relation, functions, and admin section 2023-08-16 20:15:57 +02:00
translate_campsite_type.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
translate_home_carousel_slide.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
translate_service.sql Add the services page 2023-09-17 03:42:16 +02:00
translate_services_carousel_slide.sql Manage all media uploads in a single place 2023-09-21 01:56:44 +02:00
translation.sql Add the edit form for services 2023-09-25 20:10:33 +02:00
user.sql Replace serial columns with ‘generated by default as identity’ 2023-09-26 19:35:16 +02:00
user_profile.sql Move the user role down to company_user relation 2023-08-08 02:22:16 +02:00