├── Makefile ├── README.md ├── fixeddecimal--1.0.0--1.1.0.sql ├── fixeddecimal--1.0.0_base.sql ├── fixeddecimal--1.1.0_base.sql ├── fixeddecimal--1.1.0_base_parallel.sql ├── fixeddecimal--aggs.sql ├── fixeddecimal--brin.sql ├── fixeddecimal--parallelaggs.sql ├── fixeddecimal--xlaggs.sql ├── fixeddecimal.c ├── fixeddecimal.control ├── fixeddecimalaggstate.sql └── test ├── expected ├── aggregate.out ├── brin-xl.out ├── brin.out ├── cast.out ├── comparison.out ├── index-xl.out ├── index.out └── overflow.out └── sql ├── aggregate.sql ├── brin-xl.sql ├── brin.sql ├── cast.sql ├── comparison.sql ├── index-xl.sql ├── index.sql └── overflow.sql /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/README.md -------------------------------------------------------------------------------- /fixeddecimal--1.0.0--1.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--1.0.0--1.1.0.sql -------------------------------------------------------------------------------- /fixeddecimal--1.0.0_base.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--1.0.0_base.sql -------------------------------------------------------------------------------- /fixeddecimal--1.1.0_base.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--1.1.0_base.sql -------------------------------------------------------------------------------- /fixeddecimal--1.1.0_base_parallel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--1.1.0_base_parallel.sql -------------------------------------------------------------------------------- /fixeddecimal--aggs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--aggs.sql -------------------------------------------------------------------------------- /fixeddecimal--brin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--brin.sql -------------------------------------------------------------------------------- /fixeddecimal--parallelaggs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--parallelaggs.sql -------------------------------------------------------------------------------- /fixeddecimal--xlaggs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal--xlaggs.sql -------------------------------------------------------------------------------- /fixeddecimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal.c -------------------------------------------------------------------------------- /fixeddecimal.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimal.control -------------------------------------------------------------------------------- /fixeddecimalaggstate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/fixeddecimalaggstate.sql -------------------------------------------------------------------------------- /test/expected/aggregate.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/aggregate.out -------------------------------------------------------------------------------- /test/expected/brin-xl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/brin-xl.out -------------------------------------------------------------------------------- /test/expected/brin.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/brin.out -------------------------------------------------------------------------------- /test/expected/cast.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/cast.out -------------------------------------------------------------------------------- /test/expected/comparison.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/comparison.out -------------------------------------------------------------------------------- /test/expected/index-xl.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/index-xl.out -------------------------------------------------------------------------------- /test/expected/index.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/index.out -------------------------------------------------------------------------------- /test/expected/overflow.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/expected/overflow.out -------------------------------------------------------------------------------- /test/sql/aggregate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/aggregate.sql -------------------------------------------------------------------------------- /test/sql/brin-xl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/brin-xl.sql -------------------------------------------------------------------------------- /test/sql/brin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/brin.sql -------------------------------------------------------------------------------- /test/sql/cast.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/cast.sql -------------------------------------------------------------------------------- /test/sql/comparison.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/comparison.sql -------------------------------------------------------------------------------- /test/sql/index-xl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/index-xl.sql -------------------------------------------------------------------------------- /test/sql/index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/index.sql -------------------------------------------------------------------------------- /test/sql/overflow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/2ndQuadrant/fixeddecimal/HEAD/test/sql/overflow.sql --------------------------------------------------------------------------------