LumoSQL/archive1-LumoSQL-on-github

Querying meta data fails

maxwell-k opened this issue · 2 comments

.tables doesn't list tables

.schema doesn't display a schema

With the feature/all-tests branch:

exam@example:~/lumosql/lumosql/bld-LMDB_0.9.9$ ./sqlite3
SQLite version 3.7.17 d1d3ea0
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> create table gnergle(quxx varchar(5), splanpf bigint);
sqlite> .schema
CREATE TABLE gnergle(quxx varchar(5), splanpf bigint);

which is good.

sqlite> .tables
Segmentation fault (core dumped)

which is not.

The problem has been found and fixed as part of making lmdb used exclusively as a library. The fix has not yet been committed.