├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── scripts ├── functions │ ├── create_collection_table.sql │ ├── create_lookup_column.sql │ ├── drop_lookup_columns.sql │ ├── ends_with.sql │ ├── exists.sql │ ├── find.sql │ ├── find_one.sql │ ├── fuzzy.sql │ ├── get.sql │ ├── modify.sql │ ├── save.sql │ ├── search.sql │ ├── starts_with.sql │ └── update_lookup.sql └── init.sql ├── test.sh └── tests ├── finding.sql ├── modify.sql ├── save.sql └── starts_with.sql /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | notes.md 4 | build.sql 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/README.md -------------------------------------------------------------------------------- /scripts/functions/create_collection_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/create_collection_table.sql -------------------------------------------------------------------------------- /scripts/functions/create_lookup_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/create_lookup_column.sql -------------------------------------------------------------------------------- /scripts/functions/drop_lookup_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/drop_lookup_columns.sql -------------------------------------------------------------------------------- /scripts/functions/ends_with.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/ends_with.sql -------------------------------------------------------------------------------- /scripts/functions/exists.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/exists.sql -------------------------------------------------------------------------------- /scripts/functions/find.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/find.sql -------------------------------------------------------------------------------- /scripts/functions/find_one.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/find_one.sql -------------------------------------------------------------------------------- /scripts/functions/fuzzy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/fuzzy.sql -------------------------------------------------------------------------------- /scripts/functions/get.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/get.sql -------------------------------------------------------------------------------- /scripts/functions/modify.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/modify.sql -------------------------------------------------------------------------------- /scripts/functions/save.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/save.sql -------------------------------------------------------------------------------- /scripts/functions/search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/search.sql -------------------------------------------------------------------------------- /scripts/functions/starts_with.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/starts_with.sql -------------------------------------------------------------------------------- /scripts/functions/update_lookup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/functions/update_lookup.sql -------------------------------------------------------------------------------- /scripts/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/scripts/init.sql -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/test.sh -------------------------------------------------------------------------------- /tests/finding.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/tests/finding.sql -------------------------------------------------------------------------------- /tests/modify.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/tests/modify.sql -------------------------------------------------------------------------------- /tests/save.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/tests/save.sql -------------------------------------------------------------------------------- /tests/starts_with.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robconery/dox/HEAD/tests/starts_with.sql --------------------------------------------------------------------------------