├── .gitattributes ├── 00_create_database.sql ├── 01_create_role.sql ├── 02_create_schema.sql ├── 02_search_path.sql ├── 03_make_public_schema_secure.sql ├── 04_alter_role.sql ├── 05_create_table.sql ├── 06_create_table_options.sql ├── 07_1_table_partitioning_range.sql ├── 07_2_table_partitioning_hash.sql ├── 07_3_table_partitioning_list.sql ├── 07_4_table_partitioning_multi_level.sql ├── 08_alter_table.sql ├── 09_data_type_showcase.sql ├── 10_constraints.sql ├── 14_views.sql ├── 15_materialized_views.sql ├── 20_stored_functions.sql ├── 21_stored_procedures.sql ├── 25_table_using_sproc.sql ├── 30_simple_trigger.sql ├── 32_event_trigger.sql ├── 40_custom_types.sql ├── 41_enum_types.sql ├── 45_extensions.sql ├── 50_row_level_security.sql ├── 60_transaction_management.sql ├── 61_terminating_queries.sql ├── 70_basic_analytics.sql ├── 75_parallel_query_execution.sql ├── 80_advanced_indexing.sql ├── 81_string_processing.sql ├── 82_arrays.sql ├── LICENSE ├── README.md ├── psql_basics.md ├── python_connectivity.py ├── rollout.sh └── todo.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/.gitattributes -------------------------------------------------------------------------------- /00_create_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/00_create_database.sql -------------------------------------------------------------------------------- /01_create_role.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/01_create_role.sql -------------------------------------------------------------------------------- /02_create_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/02_create_schema.sql -------------------------------------------------------------------------------- /02_search_path.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/02_search_path.sql -------------------------------------------------------------------------------- /03_make_public_schema_secure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/03_make_public_schema_secure.sql -------------------------------------------------------------------------------- /04_alter_role.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/04_alter_role.sql -------------------------------------------------------------------------------- /05_create_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/05_create_table.sql -------------------------------------------------------------------------------- /06_create_table_options.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/06_create_table_options.sql -------------------------------------------------------------------------------- /07_1_table_partitioning_range.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/07_1_table_partitioning_range.sql -------------------------------------------------------------------------------- /07_2_table_partitioning_hash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/07_2_table_partitioning_hash.sql -------------------------------------------------------------------------------- /07_3_table_partitioning_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/07_3_table_partitioning_list.sql -------------------------------------------------------------------------------- /07_4_table_partitioning_multi_level.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/07_4_table_partitioning_multi_level.sql -------------------------------------------------------------------------------- /08_alter_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/08_alter_table.sql -------------------------------------------------------------------------------- /09_data_type_showcase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/09_data_type_showcase.sql -------------------------------------------------------------------------------- /10_constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/10_constraints.sql -------------------------------------------------------------------------------- /14_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/14_views.sql -------------------------------------------------------------------------------- /15_materialized_views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/15_materialized_views.sql -------------------------------------------------------------------------------- /20_stored_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/20_stored_functions.sql -------------------------------------------------------------------------------- /21_stored_procedures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/21_stored_procedures.sql -------------------------------------------------------------------------------- /25_table_using_sproc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/25_table_using_sproc.sql -------------------------------------------------------------------------------- /30_simple_trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/30_simple_trigger.sql -------------------------------------------------------------------------------- /32_event_trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/32_event_trigger.sql -------------------------------------------------------------------------------- /40_custom_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/40_custom_types.sql -------------------------------------------------------------------------------- /41_enum_types.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/41_enum_types.sql -------------------------------------------------------------------------------- /45_extensions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/45_extensions.sql -------------------------------------------------------------------------------- /50_row_level_security.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/50_row_level_security.sql -------------------------------------------------------------------------------- /60_transaction_management.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/60_transaction_management.sql -------------------------------------------------------------------------------- /61_terminating_queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/61_terminating_queries.sql -------------------------------------------------------------------------------- /70_basic_analytics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/70_basic_analytics.sql -------------------------------------------------------------------------------- /75_parallel_query_execution.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/75_parallel_query_execution.sql -------------------------------------------------------------------------------- /80_advanced_indexing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/80_advanced_indexing.sql -------------------------------------------------------------------------------- /81_string_processing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/81_string_processing.sql -------------------------------------------------------------------------------- /82_arrays.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/82_arrays.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/README.md -------------------------------------------------------------------------------- /psql_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/psql_basics.md -------------------------------------------------------------------------------- /python_connectivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/python_connectivity.py -------------------------------------------------------------------------------- /rollout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/rollout.sh -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cybertec-postgresql/postgres-showcase/HEAD/todo.txt --------------------------------------------------------------------------------