├── LICENSE ├── Makefile ├── README.md ├── index_adviser ├── Makefile ├── README.txt ├── TODO.txt ├── index_adviser.c └── index_adviser.h ├── pg_advise ├── Makefile ├── advise_index.c ├── advise_index.h ├── sample_advise_index_session.txt └── util_funcs.c └── resources ├── Makefile ├── index_advisory.create.sql ├── sample_error_messages.sql ├── sample_error_messages.txt ├── sample_psql_session.sql ├── sample_psql_session.txt ├── select_index_advisory.create.sql └── show_index_advisory.create.sql /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/README.md -------------------------------------------------------------------------------- /index_adviser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/index_adviser/Makefile -------------------------------------------------------------------------------- /index_adviser/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/index_adviser/README.txt -------------------------------------------------------------------------------- /index_adviser/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/index_adviser/TODO.txt -------------------------------------------------------------------------------- /index_adviser/index_adviser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/index_adviser/index_adviser.c -------------------------------------------------------------------------------- /index_adviser/index_adviser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/index_adviser/index_adviser.h -------------------------------------------------------------------------------- /pg_advise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/pg_advise/Makefile -------------------------------------------------------------------------------- /pg_advise/advise_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/pg_advise/advise_index.c -------------------------------------------------------------------------------- /pg_advise/advise_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/pg_advise/advise_index.h -------------------------------------------------------------------------------- /pg_advise/sample_advise_index_session.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/pg_advise/sample_advise_index_session.txt -------------------------------------------------------------------------------- /pg_advise/util_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/pg_advise/util_funcs.c -------------------------------------------------------------------------------- /resources/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/Makefile -------------------------------------------------------------------------------- /resources/index_advisory.create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/index_advisory.create.sql -------------------------------------------------------------------------------- /resources/sample_error_messages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/sample_error_messages.sql -------------------------------------------------------------------------------- /resources/sample_error_messages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/sample_error_messages.txt -------------------------------------------------------------------------------- /resources/sample_psql_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/sample_psql_session.sql -------------------------------------------------------------------------------- /resources/sample_psql_session.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/sample_psql_session.txt -------------------------------------------------------------------------------- /resources/select_index_advisory.create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/select_index_advisory.create.sql -------------------------------------------------------------------------------- /resources/show_index_advisory.create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrPostgres/pg_adviser/HEAD/resources/show_index_advisory.create.sql --------------------------------------------------------------------------------