├── .gitignore ├── Changes ├── META.json ├── Makefile ├── README.md ├── doc └── pg_idx_advisor.md ├── pg_idx_advisor.control ├── sql ├── pg_idx_advisor--0.1.1--0.1.2.sql └── pg_idx_advisor.sql ├── src ├── idx_adviser.c ├── idx_adviser.h ├── utils.c └── utils.h └── test ├── expected ├── base.out ├── json.out └── measurement.out └── sql ├── base.sql ├── json.sql └── measurement.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/.gitignore -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/Changes -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/README.md -------------------------------------------------------------------------------- /doc/pg_idx_advisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/doc/pg_idx_advisor.md -------------------------------------------------------------------------------- /pg_idx_advisor.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/pg_idx_advisor.control -------------------------------------------------------------------------------- /sql/pg_idx_advisor--0.1.1--0.1.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/sql/pg_idx_advisor--0.1.1--0.1.2.sql -------------------------------------------------------------------------------- /sql/pg_idx_advisor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/sql/pg_idx_advisor.sql -------------------------------------------------------------------------------- /src/idx_adviser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/src/idx_adviser.c -------------------------------------------------------------------------------- /src/idx_adviser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/src/idx_adviser.h -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/src/utils.h -------------------------------------------------------------------------------- /test/expected/base.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/test/expected/base.out -------------------------------------------------------------------------------- /test/expected/json.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/test/expected/json.out -------------------------------------------------------------------------------- /test/expected/measurement.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/test/expected/measurement.out -------------------------------------------------------------------------------- /test/sql/base.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/test/sql/base.sql -------------------------------------------------------------------------------- /test/sql/json.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/test/sql/json.sql -------------------------------------------------------------------------------- /test/sql/measurement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cohenjo/pg_idx_advisor/HEAD/test/sql/measurement.sql --------------------------------------------------------------------------------