├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── entrypoint.sh ├── pkg-build.sh ├── shmig ├── shmig.conf.example └── test ├── .gitignore ├── Makefile ├── README ├── runsuite.sh ├── sql ├── 1485643154-create_table.sql └── 1485648520-testdata.sql ├── stderr.expected ├── stdout.expected ├── test_commands └── test_config /.dockerignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/README.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /pkg-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/pkg-build.sh -------------------------------------------------------------------------------- /shmig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/shmig -------------------------------------------------------------------------------- /shmig.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/shmig.conf.example -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/README -------------------------------------------------------------------------------- /test/runsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/runsuite.sh -------------------------------------------------------------------------------- /test/sql/1485643154-create_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/sql/1485643154-create_table.sql -------------------------------------------------------------------------------- /test/sql/1485648520-testdata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/sql/1485648520-testdata.sql -------------------------------------------------------------------------------- /test/stderr.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/stderr.expected -------------------------------------------------------------------------------- /test/stdout.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/stdout.expected -------------------------------------------------------------------------------- /test/test_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/test_commands -------------------------------------------------------------------------------- /test/test_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbucc/shmig/HEAD/test/test_config --------------------------------------------------------------------------------