├── .gitignore ├── .pgpass ├── DBA ├── btree_index_check.sql ├── pg_basebackup_progress_bar.md ├── pg_basebackup_progress_bar.sql ├── pg_constraints.sql ├── pg_hba_file.changes_check.sql ├── pg_stat_activity_dump.sh ├── pg_stat_activity_groups.sql ├── pg_stat_user_tables_usage.sql ├── pg_table_size_rows_count.sql ├── pg_tables_fillfactor_tuning.sql └── vacuum_full_cluster.sh ├── DDL_log_to_table ├── README.md ├── TODO.md ├── do.1_table.sql ├── do.2_functions.sql ├── do.3_triggers.sql ├── do.4_views.sql ├── do.sh ├── undo.all.sql └── undo.sh ├── LICENSE ├── LINKS.md ├── README.md ├── XPath-axes.png ├── bashrc ├── README.md ├── TODO.md └── bashrc.png ├── db_copy ├── README.md ├── db_dump.sh └── db_restore.sh ├── dev ├── README.md ├── TODO.md └── role_model.sql ├── domains ├── README.md ├── bik.sql ├── client_account.sql ├── correspondent_account.sql ├── css_color.sql ├── email.sql ├── inn.sql ├── inn10.sql ├── inn12.sql ├── kladr.sql ├── kpp.sql ├── ogrn.sql ├── ogrnip.sql ├── phone.sql ├── snils.sql ├── table_column.sql ├── timezone.sql └── view_column.sql ├── experiments ├── compression │ ├── LINKS.md │ ├── README.md │ └── data │ │ ├── lorem.txt │ │ ├── lorem.txt.gz │ │ ├── lorem.txt.lz4 │ │ ├── lorem.txt.zopfli.gz │ │ ├── lorem.txt.zst │ │ ├── test.txt │ │ ├── test.txt.bz2 │ │ ├── test.txt.gz │ │ ├── test.txt.lz4 │ │ ├── test.txt.rar │ │ ├── test.txt.xz │ │ ├── test.txt.zopfli.gz │ │ └── test.txt.zst ├── delta_encode.md └── pg_dump_restore.md ├── functions ├── app_progress.sql ├── array │ ├── array_add.sql │ ├── array_avg.sql │ ├── array_cat_agg.sql │ ├── array_diff.sql │ ├── array_intersect.sql │ ├── array_max.sql │ ├── array_min.sql │ ├── array_sort.sql │ ├── array_sum.sql │ ├── array_unique.sql │ ├── array_unique_stable.sql │ └── array_zip.sql ├── assert_never.sql ├── benchmark.sql ├── bigint_to_inet.sql ├── bit │ ├── LINKS.md │ ├── bin.sql │ ├── bit_agg.sql │ ├── bit_from_bytea.sql │ ├── bit_get.sql │ ├── bit_reverse.sql │ ├── bit_rpad.sql │ ├── bit_set.sql │ └── bit_to_bytea.sql ├── bytea_agg.sql ├── bytea_to_text.sql ├── column_description.sql ├── crc32.sql ├── csv_parse.sql ├── db_validation │ └── README.md ├── email_parse.sql ├── encode │ ├── bic_encode.sql │ ├── bwt_decode.sql │ ├── bwt_encode.sql │ ├── codepoints_gap_decrease.sql │ ├── codepoints_gap_increase.sql │ ├── delta_decode.sql │ ├── delta_encode.sql │ ├── mtf_decode.sql │ ├── mtf_encode.sql │ ├── string_from_codepoints.sql │ ├── string_to_codepoints.sql │ ├── url_decode.sql │ ├── url_encode.sql │ ├── zigzag_decode.sql │ └── zigzag_encode.sql ├── entropy.sql ├── entropy_redundancy.sql ├── explain_json.sql ├── fibonacci │ ├── LINKS.md │ ├── fib_code_bin.sql │ ├── fib_decode.sql │ ├── fib_encode.sql │ ├── fib_neg_seq.sql │ ├── fib_pack.sql │ ├── fib_seq.sql │ └── fib_unpack.sql ├── first.sql ├── gc_dist.sql ├── gender_by_name │ ├── README.md │ ├── TODO.md │ ├── create_tables.sql │ ├── dev │ │ └── README.md │ ├── gender_by_ending.csv │ ├── gender_by_name.sql │ ├── person_name_dictionary.csv │ ├── tests1.sql │ ├── tests2.sql │ └── triggers │ │ ├── gender_0_triggers.sql │ │ ├── gender_1_tests1.sql │ │ └── gender_2_tests2.sql ├── generate_random_id.sql ├── global_match.sql ├── global_search.sql ├── grep_ip.sql ├── has_html_entity.sql ├── has_xml.sql ├── hex_to_bigint.sql ├── html_entities.sql ├── html_entity_decode.sql ├── is │ ├── is_bik.sql │ ├── is_client_account.sql │ ├── is_correspondent_account.sql │ ├── is_crypt.sql │ ├── is_date.sql │ ├── is_datetime.sql │ ├── is_email.sql │ ├── is_inet.sql │ ├── is_inn10.sql │ ├── is_inn12.sql │ ├── is_json.sql │ ├── is_kpp.sql │ ├── is_macaddr.sql │ ├── is_ogrn.sql │ ├── is_ogrnip.sql │ ├── is_okato.sql │ ├── is_okpo.sql │ ├── is_payment_card.sql │ ├── is_regexp.sql │ ├── is_snils.sql │ ├── is_sql.md │ ├── is_sql.sql │ ├── is_table_column.sql │ ├── is_timezone.sql │ ├── is_uuid.sql │ ├── is_view_column.sql │ └── is_xml.sql ├── iuliia_translate.sql ├── json │ ├── LINKS.md │ ├── TODO.md │ ├── json_unicode_unescape.sql │ ├── json_unnest_recursive.sql │ ├── jsonb_object_diff.sql │ ├── jsonb_unnest_recursive.sql │ └── jsonb_unnest_recursive_distinct.sql ├── last.sql ├── mask_name.sql ├── null_count.sql ├── path_parse.sql ├── phone │ ├── dev │ │ └── phone.sql │ ├── phone_format.sql │ ├── phone_format_record.sql │ ├── phone_normalize.sql │ ├── phone_parse.sql │ ├── phone_serialize.sql │ └── phone_unserialize.sql ├── phoneme.sql ├── quote_like.sql ├── quote_regexp.sql ├── raise_exception.sql ├── random_string.sql ├── replace_pairs.sql ├── scan_timeout.sql ├── sha256.sql ├── slugify_ru.sql ├── sql_comments_remove.sql ├── sql_pretty.sql ├── sql_split.sql ├── string_to_jsonb.sql ├── table_description.sql ├── tables_diff.sql ├── test.sql ├── ts_replace.sql ├── typos_correct │ ├── create_tables.sql │ ├── dev │ │ ├── DEV.md │ │ ├── TODO.md │ │ ├── Исправление поисковых запросов в Яндексе (2008).pdf │ │ └── Разработка и исследование методов автоматической коррекции орфографических ошибок при машинном чтении текстов (2008).docx │ ├── doc │ │ ├── Виды опечаток и ошибок в словах.md │ │ └── Таблица максимального количества опечаток на длину слова.md │ ├── typos_correct.sql │ └── wordforms.csv.xz ├── unicode_unescape.sql ├── use_parallel.sql ├── uuid_generate_v7.sql └── uuid_generate_v8.sql ├── inputrc └── README.md ├── old ├── modify_million_rows │ ├── .pgpass │ ├── README.md │ ├── {JiraTaskId}_do.sh │ ├── {JiraTaskId}_do.sql │ ├── {JiraTaskId}_do_{cpu_num}.log │ ├── {JiraTaskId}_finish.sql │ └── {JiraTaskId}_prepare.sql ├── modify_thousands_rows │ ├── README.md │ └── demo.sql ├── pg_delete_compress_logs.sh └── pg_terminate │ ├── README.md │ ├── pg_terminate_duplicate_locked.sql │ └── pg_terminate_idle_timeout.sql ├── pg_archive_log ├── README.md ├── pg_archive_log.service └── pg_archive_log.timer ├── pg_backup ├── README.md ├── TODO.md ├── archive_command.md ├── archive_command.sh ├── mount_example.md ├── pg_backup.conf ├── pg_backup.service ├── pg_backup.sh ├── pg_backup.timer ├── pg_backup_test.sh ├── pg_backup_validate.service ├── pg_backup_validate.timer ├── restore_command.md └── restore_command.sh ├── pg_receivewal ├── README.md ├── permit_pgreceivewal └── pg_receivewal@.service ├── pg_terminate_backend_log_to_table ├── README.md ├── do.1_prepare.sql ├── do.2_pg_terminate_duplicate_locked.sql └── do.3_pg_terminate_idle_timeout.sql ├── procedures ├── connection_ping │ ├── README.md │ ├── connection_ping.sql │ ├── psql_connection_lost_duration_v1.sh │ └── psql_connection_lost_duration_v2.sh ├── execute_attempt │ ├── README.md │ ├── execute_attempt.sql │ ├── output_example.log │ ├── output_example_failed.log │ └── output_example_success.log └── loop_execute │ ├── README.md │ ├── TODO.md │ ├── loop_execute.sql │ ├── output_example.log │ ├── using_example.delete.sql │ ├── using_example.sh │ └── using_example.update.sql ├── psqlrc ├── README.md ├── TODO.md ├── psql_postgres.sh ├── psqlrc ├── psqlrc.pending_restart_reload.png ├── psqlrc.pg_hba.conf.error_example.png ├── psqlrc.postgresql.conf.error_example.png ├── psqlrc.primary.png └── psqlrc.standby.png ├── star_track.md ├── test ├── check_constraint_stupid_demo.sql └── languages_text_example.sql ├── types ├── table_column_type.sql └── view_column_type.sql └── views ├── pg_bloat_info.sql ├── pg_foreign_keys.sql ├── pg_functions.sql ├── pg_object_owner.sql ├── pg_role_members.sql └── pg_view_depends.sql /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pgpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/.pgpass -------------------------------------------------------------------------------- /DBA/btree_index_check.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/btree_index_check.sql -------------------------------------------------------------------------------- /DBA/pg_basebackup_progress_bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_basebackup_progress_bar.md -------------------------------------------------------------------------------- /DBA/pg_basebackup_progress_bar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_basebackup_progress_bar.sql -------------------------------------------------------------------------------- /DBA/pg_constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_constraints.sql -------------------------------------------------------------------------------- /DBA/pg_hba_file.changes_check.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_hba_file.changes_check.sql -------------------------------------------------------------------------------- /DBA/pg_stat_activity_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_stat_activity_dump.sh -------------------------------------------------------------------------------- /DBA/pg_stat_activity_groups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_stat_activity_groups.sql -------------------------------------------------------------------------------- /DBA/pg_stat_user_tables_usage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_stat_user_tables_usage.sql -------------------------------------------------------------------------------- /DBA/pg_table_size_rows_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_table_size_rows_count.sql -------------------------------------------------------------------------------- /DBA/pg_tables_fillfactor_tuning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/pg_tables_fillfactor_tuning.sql -------------------------------------------------------------------------------- /DBA/vacuum_full_cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DBA/vacuum_full_cluster.sh -------------------------------------------------------------------------------- /DDL_log_to_table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/README.md -------------------------------------------------------------------------------- /DDL_log_to_table/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/TODO.md -------------------------------------------------------------------------------- /DDL_log_to_table/do.1_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/do.1_table.sql -------------------------------------------------------------------------------- /DDL_log_to_table/do.2_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/do.2_functions.sql -------------------------------------------------------------------------------- /DDL_log_to_table/do.3_triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/do.3_triggers.sql -------------------------------------------------------------------------------- /DDL_log_to_table/do.4_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/do.4_views.sql -------------------------------------------------------------------------------- /DDL_log_to_table/do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/do.sh -------------------------------------------------------------------------------- /DDL_log_to_table/undo.all.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/undo.all.sql -------------------------------------------------------------------------------- /DDL_log_to_table/undo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/DDL_log_to_table/undo.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/LICENSE -------------------------------------------------------------------------------- /LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/LINKS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/README.md -------------------------------------------------------------------------------- /XPath-axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/XPath-axes.png -------------------------------------------------------------------------------- /bashrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/bashrc/README.md -------------------------------------------------------------------------------- /bashrc/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/bashrc/TODO.md -------------------------------------------------------------------------------- /bashrc/bashrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/bashrc/bashrc.png -------------------------------------------------------------------------------- /db_copy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/db_copy/README.md -------------------------------------------------------------------------------- /db_copy/db_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/db_copy/db_dump.sh -------------------------------------------------------------------------------- /db_copy/db_restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/db_copy/db_restore.sh -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/dev/TODO.md -------------------------------------------------------------------------------- /dev/role_model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/dev/role_model.sql -------------------------------------------------------------------------------- /domains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/README.md -------------------------------------------------------------------------------- /domains/bik.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/bik.sql -------------------------------------------------------------------------------- /domains/client_account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/client_account.sql -------------------------------------------------------------------------------- /domains/correspondent_account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/correspondent_account.sql -------------------------------------------------------------------------------- /domains/css_color.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/css_color.sql -------------------------------------------------------------------------------- /domains/email.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/email.sql -------------------------------------------------------------------------------- /domains/inn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/inn.sql -------------------------------------------------------------------------------- /domains/inn10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/inn10.sql -------------------------------------------------------------------------------- /domains/inn12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/inn12.sql -------------------------------------------------------------------------------- /domains/kladr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/kladr.sql -------------------------------------------------------------------------------- /domains/kpp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/kpp.sql -------------------------------------------------------------------------------- /domains/ogrn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/ogrn.sql -------------------------------------------------------------------------------- /domains/ogrnip.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/ogrnip.sql -------------------------------------------------------------------------------- /domains/phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/phone.sql -------------------------------------------------------------------------------- /domains/snils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/snils.sql -------------------------------------------------------------------------------- /domains/table_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/table_column.sql -------------------------------------------------------------------------------- /domains/timezone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/timezone.sql -------------------------------------------------------------------------------- /domains/view_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/domains/view_column.sql -------------------------------------------------------------------------------- /experiments/compression/LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/LINKS.md -------------------------------------------------------------------------------- /experiments/compression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/README.md -------------------------------------------------------------------------------- /experiments/compression/data/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/lorem.txt -------------------------------------------------------------------------------- /experiments/compression/data/lorem.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/lorem.txt.gz -------------------------------------------------------------------------------- /experiments/compression/data/lorem.txt.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/lorem.txt.lz4 -------------------------------------------------------------------------------- /experiments/compression/data/lorem.txt.zopfli.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/lorem.txt.zopfli.gz -------------------------------------------------------------------------------- /experiments/compression/data/lorem.txt.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/lorem.txt.zst -------------------------------------------------------------------------------- /experiments/compression/data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt -------------------------------------------------------------------------------- /experiments/compression/data/test.txt.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt.bz2 -------------------------------------------------------------------------------- /experiments/compression/data/test.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt.gz -------------------------------------------------------------------------------- /experiments/compression/data/test.txt.lz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt.lz4 -------------------------------------------------------------------------------- /experiments/compression/data/test.txt.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt.rar -------------------------------------------------------------------------------- /experiments/compression/data/test.txt.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt.xz -------------------------------------------------------------------------------- /experiments/compression/data/test.txt.zopfli.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt.zopfli.gz -------------------------------------------------------------------------------- /experiments/compression/data/test.txt.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/compression/data/test.txt.zst -------------------------------------------------------------------------------- /experiments/delta_encode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/delta_encode.md -------------------------------------------------------------------------------- /experiments/pg_dump_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/experiments/pg_dump_restore.md -------------------------------------------------------------------------------- /functions/app_progress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/app_progress.sql -------------------------------------------------------------------------------- /functions/array/array_add.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_add.sql -------------------------------------------------------------------------------- /functions/array/array_avg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_avg.sql -------------------------------------------------------------------------------- /functions/array/array_cat_agg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_cat_agg.sql -------------------------------------------------------------------------------- /functions/array/array_diff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_diff.sql -------------------------------------------------------------------------------- /functions/array/array_intersect.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_intersect.sql -------------------------------------------------------------------------------- /functions/array/array_max.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_max.sql -------------------------------------------------------------------------------- /functions/array/array_min.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_min.sql -------------------------------------------------------------------------------- /functions/array/array_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_sort.sql -------------------------------------------------------------------------------- /functions/array/array_sum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_sum.sql -------------------------------------------------------------------------------- /functions/array/array_unique.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_unique.sql -------------------------------------------------------------------------------- /functions/array/array_unique_stable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_unique_stable.sql -------------------------------------------------------------------------------- /functions/array/array_zip.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/array/array_zip.sql -------------------------------------------------------------------------------- /functions/assert_never.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/assert_never.sql -------------------------------------------------------------------------------- /functions/benchmark.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/benchmark.sql -------------------------------------------------------------------------------- /functions/bigint_to_inet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bigint_to_inet.sql -------------------------------------------------------------------------------- /functions/bit/LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/LINKS.md -------------------------------------------------------------------------------- /functions/bit/bin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bin.sql -------------------------------------------------------------------------------- /functions/bit/bit_agg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bit_agg.sql -------------------------------------------------------------------------------- /functions/bit/bit_from_bytea.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bit_from_bytea.sql -------------------------------------------------------------------------------- /functions/bit/bit_get.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bit_get.sql -------------------------------------------------------------------------------- /functions/bit/bit_reverse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bit_reverse.sql -------------------------------------------------------------------------------- /functions/bit/bit_rpad.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bit_rpad.sql -------------------------------------------------------------------------------- /functions/bit/bit_set.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bit_set.sql -------------------------------------------------------------------------------- /functions/bit/bit_to_bytea.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bit/bit_to_bytea.sql -------------------------------------------------------------------------------- /functions/bytea_agg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bytea_agg.sql -------------------------------------------------------------------------------- /functions/bytea_to_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/bytea_to_text.sql -------------------------------------------------------------------------------- /functions/column_description.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/column_description.sql -------------------------------------------------------------------------------- /functions/crc32.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/crc32.sql -------------------------------------------------------------------------------- /functions/csv_parse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/csv_parse.sql -------------------------------------------------------------------------------- /functions/db_validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/db_validation/README.md -------------------------------------------------------------------------------- /functions/email_parse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/email_parse.sql -------------------------------------------------------------------------------- /functions/encode/bic_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/bic_encode.sql -------------------------------------------------------------------------------- /functions/encode/bwt_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/bwt_decode.sql -------------------------------------------------------------------------------- /functions/encode/bwt_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/bwt_encode.sql -------------------------------------------------------------------------------- /functions/encode/codepoints_gap_decrease.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/codepoints_gap_decrease.sql -------------------------------------------------------------------------------- /functions/encode/codepoints_gap_increase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/codepoints_gap_increase.sql -------------------------------------------------------------------------------- /functions/encode/delta_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/delta_decode.sql -------------------------------------------------------------------------------- /functions/encode/delta_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/delta_encode.sql -------------------------------------------------------------------------------- /functions/encode/mtf_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/mtf_decode.sql -------------------------------------------------------------------------------- /functions/encode/mtf_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/mtf_encode.sql -------------------------------------------------------------------------------- /functions/encode/string_from_codepoints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/string_from_codepoints.sql -------------------------------------------------------------------------------- /functions/encode/string_to_codepoints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/string_to_codepoints.sql -------------------------------------------------------------------------------- /functions/encode/url_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/url_decode.sql -------------------------------------------------------------------------------- /functions/encode/url_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/url_encode.sql -------------------------------------------------------------------------------- /functions/encode/zigzag_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/zigzag_decode.sql -------------------------------------------------------------------------------- /functions/encode/zigzag_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/encode/zigzag_encode.sql -------------------------------------------------------------------------------- /functions/entropy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/entropy.sql -------------------------------------------------------------------------------- /functions/entropy_redundancy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/entropy_redundancy.sql -------------------------------------------------------------------------------- /functions/explain_json.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/explain_json.sql -------------------------------------------------------------------------------- /functions/fibonacci/LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/LINKS.md -------------------------------------------------------------------------------- /functions/fibonacci/fib_code_bin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/fib_code_bin.sql -------------------------------------------------------------------------------- /functions/fibonacci/fib_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/fib_decode.sql -------------------------------------------------------------------------------- /functions/fibonacci/fib_encode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/fib_encode.sql -------------------------------------------------------------------------------- /functions/fibonacci/fib_neg_seq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/fib_neg_seq.sql -------------------------------------------------------------------------------- /functions/fibonacci/fib_pack.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/fib_pack.sql -------------------------------------------------------------------------------- /functions/fibonacci/fib_seq.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/fib_seq.sql -------------------------------------------------------------------------------- /functions/fibonacci/fib_unpack.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/fibonacci/fib_unpack.sql -------------------------------------------------------------------------------- /functions/first.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/first.sql -------------------------------------------------------------------------------- /functions/gc_dist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gc_dist.sql -------------------------------------------------------------------------------- /functions/gender_by_name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/README.md -------------------------------------------------------------------------------- /functions/gender_by_name/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/TODO.md -------------------------------------------------------------------------------- /functions/gender_by_name/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/create_tables.sql -------------------------------------------------------------------------------- /functions/gender_by_name/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/dev/README.md -------------------------------------------------------------------------------- /functions/gender_by_name/gender_by_ending.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/gender_by_ending.csv -------------------------------------------------------------------------------- /functions/gender_by_name/gender_by_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/gender_by_name.sql -------------------------------------------------------------------------------- /functions/gender_by_name/person_name_dictionary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/person_name_dictionary.csv -------------------------------------------------------------------------------- /functions/gender_by_name/tests1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/tests1.sql -------------------------------------------------------------------------------- /functions/gender_by_name/tests2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/tests2.sql -------------------------------------------------------------------------------- /functions/gender_by_name/triggers/gender_0_triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/triggers/gender_0_triggers.sql -------------------------------------------------------------------------------- /functions/gender_by_name/triggers/gender_1_tests1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/triggers/gender_1_tests1.sql -------------------------------------------------------------------------------- /functions/gender_by_name/triggers/gender_2_tests2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/gender_by_name/triggers/gender_2_tests2.sql -------------------------------------------------------------------------------- /functions/generate_random_id.sql: -------------------------------------------------------------------------------- 1 | --see https://gitlab.com/depesz/short_ids 2 | -------------------------------------------------------------------------------- /functions/global_match.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/global_match.sql -------------------------------------------------------------------------------- /functions/global_search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/global_search.sql -------------------------------------------------------------------------------- /functions/grep_ip.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/grep_ip.sql -------------------------------------------------------------------------------- /functions/has_html_entity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/has_html_entity.sql -------------------------------------------------------------------------------- /functions/has_xml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/has_xml.sql -------------------------------------------------------------------------------- /functions/hex_to_bigint.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/hex_to_bigint.sql -------------------------------------------------------------------------------- /functions/html_entities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/html_entities.sql -------------------------------------------------------------------------------- /functions/html_entity_decode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/html_entity_decode.sql -------------------------------------------------------------------------------- /functions/is/is_bik.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_bik.sql -------------------------------------------------------------------------------- /functions/is/is_client_account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_client_account.sql -------------------------------------------------------------------------------- /functions/is/is_correspondent_account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_correspondent_account.sql -------------------------------------------------------------------------------- /functions/is/is_crypt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_crypt.sql -------------------------------------------------------------------------------- /functions/is/is_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_date.sql -------------------------------------------------------------------------------- /functions/is/is_datetime.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_datetime.sql -------------------------------------------------------------------------------- /functions/is/is_email.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_email.sql -------------------------------------------------------------------------------- /functions/is/is_inet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_inet.sql -------------------------------------------------------------------------------- /functions/is/is_inn10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_inn10.sql -------------------------------------------------------------------------------- /functions/is/is_inn12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_inn12.sql -------------------------------------------------------------------------------- /functions/is/is_json.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_json.sql -------------------------------------------------------------------------------- /functions/is/is_kpp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_kpp.sql -------------------------------------------------------------------------------- /functions/is/is_macaddr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_macaddr.sql -------------------------------------------------------------------------------- /functions/is/is_ogrn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_ogrn.sql -------------------------------------------------------------------------------- /functions/is/is_ogrnip.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_ogrnip.sql -------------------------------------------------------------------------------- /functions/is/is_okato.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_okato.sql -------------------------------------------------------------------------------- /functions/is/is_okpo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_okpo.sql -------------------------------------------------------------------------------- /functions/is/is_payment_card.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_payment_card.sql -------------------------------------------------------------------------------- /functions/is/is_regexp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_regexp.sql -------------------------------------------------------------------------------- /functions/is/is_snils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_snils.sql -------------------------------------------------------------------------------- /functions/is/is_sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_sql.md -------------------------------------------------------------------------------- /functions/is/is_sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_sql.sql -------------------------------------------------------------------------------- /functions/is/is_table_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_table_column.sql -------------------------------------------------------------------------------- /functions/is/is_timezone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_timezone.sql -------------------------------------------------------------------------------- /functions/is/is_uuid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_uuid.sql -------------------------------------------------------------------------------- /functions/is/is_view_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_view_column.sql -------------------------------------------------------------------------------- /functions/is/is_xml.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/is/is_xml.sql -------------------------------------------------------------------------------- /functions/iuliia_translate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/iuliia_translate.sql -------------------------------------------------------------------------------- /functions/json/LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/json/LINKS.md -------------------------------------------------------------------------------- /functions/json/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/json/TODO.md -------------------------------------------------------------------------------- /functions/json/json_unicode_unescape.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/json/json_unicode_unescape.sql -------------------------------------------------------------------------------- /functions/json/json_unnest_recursive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/json/json_unnest_recursive.sql -------------------------------------------------------------------------------- /functions/json/jsonb_object_diff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/json/jsonb_object_diff.sql -------------------------------------------------------------------------------- /functions/json/jsonb_unnest_recursive.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/json/jsonb_unnest_recursive.sql -------------------------------------------------------------------------------- /functions/json/jsonb_unnest_recursive_distinct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/json/jsonb_unnest_recursive_distinct.sql -------------------------------------------------------------------------------- /functions/last.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/last.sql -------------------------------------------------------------------------------- /functions/mask_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/mask_name.sql -------------------------------------------------------------------------------- /functions/null_count.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/null_count.sql -------------------------------------------------------------------------------- /functions/path_parse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/path_parse.sql -------------------------------------------------------------------------------- /functions/phone/dev/phone.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phone/dev/phone.sql -------------------------------------------------------------------------------- /functions/phone/phone_format.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phone/phone_format.sql -------------------------------------------------------------------------------- /functions/phone/phone_format_record.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phone/phone_format_record.sql -------------------------------------------------------------------------------- /functions/phone/phone_normalize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phone/phone_normalize.sql -------------------------------------------------------------------------------- /functions/phone/phone_parse.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phone/phone_parse.sql -------------------------------------------------------------------------------- /functions/phone/phone_serialize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phone/phone_serialize.sql -------------------------------------------------------------------------------- /functions/phone/phone_unserialize.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phone/phone_unserialize.sql -------------------------------------------------------------------------------- /functions/phoneme.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/phoneme.sql -------------------------------------------------------------------------------- /functions/quote_like.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/quote_like.sql -------------------------------------------------------------------------------- /functions/quote_regexp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/quote_regexp.sql -------------------------------------------------------------------------------- /functions/raise_exception.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/raise_exception.sql -------------------------------------------------------------------------------- /functions/random_string.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/random_string.sql -------------------------------------------------------------------------------- /functions/replace_pairs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/replace_pairs.sql -------------------------------------------------------------------------------- /functions/scan_timeout.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/scan_timeout.sql -------------------------------------------------------------------------------- /functions/sha256.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/sha256.sql -------------------------------------------------------------------------------- /functions/slugify_ru.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/slugify_ru.sql -------------------------------------------------------------------------------- /functions/sql_comments_remove.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/sql_comments_remove.sql -------------------------------------------------------------------------------- /functions/sql_pretty.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/sql_pretty.sql -------------------------------------------------------------------------------- /functions/sql_split.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/sql_split.sql -------------------------------------------------------------------------------- /functions/string_to_jsonb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/string_to_jsonb.sql -------------------------------------------------------------------------------- /functions/table_description.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/table_description.sql -------------------------------------------------------------------------------- /functions/tables_diff.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/tables_diff.sql -------------------------------------------------------------------------------- /functions/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/test.sql -------------------------------------------------------------------------------- /functions/ts_replace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/ts_replace.sql -------------------------------------------------------------------------------- /functions/typos_correct/create_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/create_tables.sql -------------------------------------------------------------------------------- /functions/typos_correct/dev/DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/dev/DEV.md -------------------------------------------------------------------------------- /functions/typos_correct/dev/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/dev/TODO.md -------------------------------------------------------------------------------- /functions/typos_correct/dev/Исправление поисковых запросов в Яндексе (2008).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/dev/Исправление поисковых запросов в Яндексе (2008).pdf -------------------------------------------------------------------------------- /functions/typos_correct/dev/Разработка и исследование методов автоматической коррекции орфографических ошибок при машинном чтении текстов (2008).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/dev/Разработка и исследование методов автоматической коррекции орфографических ошибок при машинном чтении текстов (2008).docx -------------------------------------------------------------------------------- /functions/typos_correct/doc/Виды опечаток и ошибок в словах.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/doc/Виды опечаток и ошибок в словах.md -------------------------------------------------------------------------------- /functions/typos_correct/doc/Таблица максимального количества опечаток на длину слова.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/doc/Таблица максимального количества опечаток на длину слова.md -------------------------------------------------------------------------------- /functions/typos_correct/typos_correct.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/typos_correct.sql -------------------------------------------------------------------------------- /functions/typos_correct/wordforms.csv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/typos_correct/wordforms.csv.xz -------------------------------------------------------------------------------- /functions/unicode_unescape.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/unicode_unescape.sql -------------------------------------------------------------------------------- /functions/use_parallel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/use_parallel.sql -------------------------------------------------------------------------------- /functions/uuid_generate_v7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/uuid_generate_v7.sql -------------------------------------------------------------------------------- /functions/uuid_generate_v8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/functions/uuid_generate_v8.sql -------------------------------------------------------------------------------- /inputrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/inputrc/README.md -------------------------------------------------------------------------------- /old/modify_million_rows/.pgpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_million_rows/.pgpass -------------------------------------------------------------------------------- /old/modify_million_rows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_million_rows/README.md -------------------------------------------------------------------------------- /old/modify_million_rows/{JiraTaskId}_do.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_million_rows/{JiraTaskId}_do.sh -------------------------------------------------------------------------------- /old/modify_million_rows/{JiraTaskId}_do.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_million_rows/{JiraTaskId}_do.sql -------------------------------------------------------------------------------- /old/modify_million_rows/{JiraTaskId}_do_{cpu_num}.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_million_rows/{JiraTaskId}_do_{cpu_num}.log -------------------------------------------------------------------------------- /old/modify_million_rows/{JiraTaskId}_finish.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_million_rows/{JiraTaskId}_finish.sql -------------------------------------------------------------------------------- /old/modify_million_rows/{JiraTaskId}_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_million_rows/{JiraTaskId}_prepare.sql -------------------------------------------------------------------------------- /old/modify_thousands_rows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_thousands_rows/README.md -------------------------------------------------------------------------------- /old/modify_thousands_rows/demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/modify_thousands_rows/demo.sql -------------------------------------------------------------------------------- /old/pg_delete_compress_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/pg_delete_compress_logs.sh -------------------------------------------------------------------------------- /old/pg_terminate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/pg_terminate/README.md -------------------------------------------------------------------------------- /old/pg_terminate/pg_terminate_duplicate_locked.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/pg_terminate/pg_terminate_duplicate_locked.sql -------------------------------------------------------------------------------- /old/pg_terminate/pg_terminate_idle_timeout.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/old/pg_terminate/pg_terminate_idle_timeout.sql -------------------------------------------------------------------------------- /pg_archive_log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_archive_log/README.md -------------------------------------------------------------------------------- /pg_archive_log/pg_archive_log.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_archive_log/pg_archive_log.service -------------------------------------------------------------------------------- /pg_archive_log/pg_archive_log.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_archive_log/pg_archive_log.timer -------------------------------------------------------------------------------- /pg_backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/README.md -------------------------------------------------------------------------------- /pg_backup/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/TODO.md -------------------------------------------------------------------------------- /pg_backup/archive_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/archive_command.md -------------------------------------------------------------------------------- /pg_backup/archive_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/archive_command.sh -------------------------------------------------------------------------------- /pg_backup/mount_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/mount_example.md -------------------------------------------------------------------------------- /pg_backup/pg_backup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/pg_backup.conf -------------------------------------------------------------------------------- /pg_backup/pg_backup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/pg_backup.service -------------------------------------------------------------------------------- /pg_backup/pg_backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/pg_backup.sh -------------------------------------------------------------------------------- /pg_backup/pg_backup.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/pg_backup.timer -------------------------------------------------------------------------------- /pg_backup/pg_backup_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/pg_backup_test.sh -------------------------------------------------------------------------------- /pg_backup/pg_backup_validate.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/pg_backup_validate.service -------------------------------------------------------------------------------- /pg_backup/pg_backup_validate.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/pg_backup_validate.timer -------------------------------------------------------------------------------- /pg_backup/restore_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/restore_command.md -------------------------------------------------------------------------------- /pg_backup/restore_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_backup/restore_command.sh -------------------------------------------------------------------------------- /pg_receivewal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_receivewal/README.md -------------------------------------------------------------------------------- /pg_receivewal/permit_pgreceivewal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_receivewal/permit_pgreceivewal -------------------------------------------------------------------------------- /pg_receivewal/pg_receivewal@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_receivewal/pg_receivewal@.service -------------------------------------------------------------------------------- /pg_terminate_backend_log_to_table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_terminate_backend_log_to_table/README.md -------------------------------------------------------------------------------- /pg_terminate_backend_log_to_table/do.1_prepare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_terminate_backend_log_to_table/do.1_prepare.sql -------------------------------------------------------------------------------- /pg_terminate_backend_log_to_table/do.2_pg_terminate_duplicate_locked.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_terminate_backend_log_to_table/do.2_pg_terminate_duplicate_locked.sql -------------------------------------------------------------------------------- /pg_terminate_backend_log_to_table/do.3_pg_terminate_idle_timeout.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/pg_terminate_backend_log_to_table/do.3_pg_terminate_idle_timeout.sql -------------------------------------------------------------------------------- /procedures/connection_ping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/connection_ping/README.md -------------------------------------------------------------------------------- /procedures/connection_ping/connection_ping.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/connection_ping/connection_ping.sql -------------------------------------------------------------------------------- /procedures/connection_ping/psql_connection_lost_duration_v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/connection_ping/psql_connection_lost_duration_v1.sh -------------------------------------------------------------------------------- /procedures/connection_ping/psql_connection_lost_duration_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/connection_ping/psql_connection_lost_duration_v2.sh -------------------------------------------------------------------------------- /procedures/execute_attempt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/execute_attempt/README.md -------------------------------------------------------------------------------- /procedures/execute_attempt/execute_attempt.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/execute_attempt/execute_attempt.sql -------------------------------------------------------------------------------- /procedures/execute_attempt/output_example.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/execute_attempt/output_example.log -------------------------------------------------------------------------------- /procedures/execute_attempt/output_example_failed.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/execute_attempt/output_example_failed.log -------------------------------------------------------------------------------- /procedures/execute_attempt/output_example_success.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/execute_attempt/output_example_success.log -------------------------------------------------------------------------------- /procedures/loop_execute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/loop_execute/README.md -------------------------------------------------------------------------------- /procedures/loop_execute/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/loop_execute/TODO.md -------------------------------------------------------------------------------- /procedures/loop_execute/loop_execute.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/loop_execute/loop_execute.sql -------------------------------------------------------------------------------- /procedures/loop_execute/output_example.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/loop_execute/output_example.log -------------------------------------------------------------------------------- /procedures/loop_execute/using_example.delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/loop_execute/using_example.delete.sql -------------------------------------------------------------------------------- /procedures/loop_execute/using_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/loop_execute/using_example.sh -------------------------------------------------------------------------------- /procedures/loop_execute/using_example.update.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/procedures/loop_execute/using_example.update.sql -------------------------------------------------------------------------------- /psqlrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/README.md -------------------------------------------------------------------------------- /psqlrc/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/TODO.md -------------------------------------------------------------------------------- /psqlrc/psql_postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/psql_postgres.sh -------------------------------------------------------------------------------- /psqlrc/psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/psqlrc -------------------------------------------------------------------------------- /psqlrc/psqlrc.pending_restart_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/psqlrc.pending_restart_reload.png -------------------------------------------------------------------------------- /psqlrc/psqlrc.pg_hba.conf.error_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/psqlrc.pg_hba.conf.error_example.png -------------------------------------------------------------------------------- /psqlrc/psqlrc.postgresql.conf.error_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/psqlrc.postgresql.conf.error_example.png -------------------------------------------------------------------------------- /psqlrc/psqlrc.primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/psqlrc.primary.png -------------------------------------------------------------------------------- /psqlrc/psqlrc.standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/psqlrc/psqlrc.standby.png -------------------------------------------------------------------------------- /star_track.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/star_track.md -------------------------------------------------------------------------------- /test/check_constraint_stupid_demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/test/check_constraint_stupid_demo.sql -------------------------------------------------------------------------------- /test/languages_text_example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/test/languages_text_example.sql -------------------------------------------------------------------------------- /types/table_column_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/types/table_column_type.sql -------------------------------------------------------------------------------- /types/view_column_type.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/types/view_column_type.sql -------------------------------------------------------------------------------- /views/pg_bloat_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/views/pg_bloat_info.sql -------------------------------------------------------------------------------- /views/pg_foreign_keys.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/views/pg_foreign_keys.sql -------------------------------------------------------------------------------- /views/pg_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/views/pg_functions.sql -------------------------------------------------------------------------------- /views/pg_object_owner.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/views/pg_object_owner.sql -------------------------------------------------------------------------------- /views/pg_role_members.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/views/pg_role_members.sql -------------------------------------------------------------------------------- /views/pg_view_depends.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rin-nas/postgresql-patterns-library/HEAD/views/pg_view_depends.sql --------------------------------------------------------------------------------