├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── dev ├── benchmark │ ├── a_nanoid.sql │ ├── b_nanoid.sql │ └── benchmarks.sql └── test │ └── unit_tests.sql ├── logo.svg └── nanoid.sql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viascom/nanoid-postgres/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | .fastRequest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viascom/nanoid-postgres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viascom/nanoid-postgres/HEAD/README.md -------------------------------------------------------------------------------- /dev/benchmark/a_nanoid.sql: -------------------------------------------------------------------------------- 1 | -- PLACE IMPLEMENTATION A 'a_nanoid()' HERE -------------------------------------------------------------------------------- /dev/benchmark/b_nanoid.sql: -------------------------------------------------------------------------------- 1 | -- PLACE IMPLEMENTATION B 'b_nanoid()' HERE -------------------------------------------------------------------------------- /dev/benchmark/benchmarks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viascom/nanoid-postgres/HEAD/dev/benchmark/benchmarks.sql -------------------------------------------------------------------------------- /dev/test/unit_tests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viascom/nanoid-postgres/HEAD/dev/test/unit_tests.sql -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viascom/nanoid-postgres/HEAD/logo.svg -------------------------------------------------------------------------------- /nanoid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viascom/nanoid-postgres/HEAD/nanoid.sql --------------------------------------------------------------------------------