├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.extra_window_functions ├── README.md ├── expected └── regression.out ├── extra_window_functions--1.0.sql ├── extra_window_functions.c ├── extra_window_functions.control ├── open-graph.png └── sql └── regression.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/Makefile -------------------------------------------------------------------------------- /README.extra_window_functions: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/README.md -------------------------------------------------------------------------------- /expected/regression.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/expected/regression.out -------------------------------------------------------------------------------- /extra_window_functions--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/extra_window_functions--1.0.sql -------------------------------------------------------------------------------- /extra_window_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/extra_window_functions.c -------------------------------------------------------------------------------- /extra_window_functions.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/extra_window_functions.control -------------------------------------------------------------------------------- /open-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/open-graph.png -------------------------------------------------------------------------------- /sql/regression.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xocolatl/extra_window_functions/HEAD/sql/regression.sql --------------------------------------------------------------------------------