murphy-db: initial commit of the MurphyDB
authorJanos Kovacs <jankovac503@gmail.com>
Sun, 25 Mar 2012 19:44:10 +0000 (22:44 +0300)
committerKrisztian Litkey <krisztian.litkey@intel.com>
Wed, 18 Apr 2012 13:32:09 +0000 (16:32 +0300)
commitd80940c91e55f6ddda8c4431e6d22ddc86b6cbb1
tree38cecf529ba41e634f7db7724d0fcd7b8192eeab
parent3f7c7184105c9e6e8a3739b7c70965c71a8dbb9c
murphy-db: initial commit of the MurphyDB
48 files changed:
configure.ac
src/Makefile.am
src/murphy-db/Makefile.am [new file with mode: 0644]
src/murphy-db/include/Makefile.am [new file with mode: 0644]
src/murphy-db/include/murphy-db/assert.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/handle.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/hash.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/list.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/mdb.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/mqi-types.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/mqi.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/mql.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/result.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/sequence.h [new file with mode: 0644]
src/murphy-db/include/murphy-db/statement.h [new file with mode: 0644]
src/murphy-db/mdb/Makefile.am [new file with mode: 0644]
src/murphy-db/mdb/column.c [new file with mode: 0644]
src/murphy-db/mdb/column.h [new file with mode: 0644]
src/murphy-db/mdb/cond.c [new file with mode: 0644]
src/murphy-db/mdb/cond.h [new file with mode: 0644]
src/murphy-db/mdb/handle.c [new file with mode: 0644]
src/murphy-db/mdb/hash.c [new file with mode: 0644]
src/murphy-db/mdb/index.c [new file with mode: 0644]
src/murphy-db/mdb/index.h [new file with mode: 0644]
src/murphy-db/mdb/log.c [new file with mode: 0644]
src/murphy-db/mdb/log.h [new file with mode: 0644]
src/murphy-db/mdb/mqi-types.c [new file with mode: 0644]
src/murphy-db/mdb/row.c [new file with mode: 0644]
src/murphy-db/mdb/row.h [new file with mode: 0644]
src/murphy-db/mdb/sequence.c [new file with mode: 0644]
src/murphy-db/mdb/table.c [new file with mode: 0644]
src/murphy-db/mdb/table.h [new file with mode: 0644]
src/murphy-db/mdb/transaction.c [new file with mode: 0644]
src/murphy-db/mdb/transaction.h [new file with mode: 0644]
src/murphy-db/mqi/Makefile.am [new file with mode: 0644]
src/murphy-db/mqi/db.h [new file with mode: 0644]
src/murphy-db/mqi/mdb-backend.c [new file with mode: 0644]
src/murphy-db/mqi/mdb-backend.h [new file with mode: 0644]
src/murphy-db/mqi/mqi.c [new file with mode: 0644]
src/murphy-db/mql/Makefile.am [new file with mode: 0644]
src/murphy-db/mql/mql-parser.y [new file with mode: 0644]
src/murphy-db/mql/mql-scanner.l [new file with mode: 0644]
src/murphy-db/mql/result.c [new file with mode: 0644]
src/murphy-db/mql/statement.c [new file with mode: 0644]
src/murphy-db/tests/Makefile.am [new file with mode: 0644]
src/murphy-db/tests/check-libmdb.c [new file with mode: 0644]
src/murphy-db/tests/check-libmqi.c [new file with mode: 0644]
src/murphy-db/tests/check-libmql.c [new file with mode: 0644]