Skip to content

Commit

Permalink
Start + majority implementation of PostgreSQL DescriptorIndex backend
Browse files Browse the repository at this point in the history
Still 4 more methods left to implement.
  • Loading branch information
Purg committed Jan 22, 2016
1 parent 27b4380 commit 2227be7
Show file tree
Hide file tree
Showing 2 changed files with 583 additions and 0 deletions.
7 changes: 7 additions & 0 deletions etc/smqtk/postgres/descriptor_index/example_table_init.sql
@@ -0,0 +1,7 @@
DROP TABLE IF EXISTS descriptor_index;
CREATE TABLE IF NOT EXISTS descriptor_index (
uid TEXT NOT NULL,
element BYTEA NOT NULL,

PRIMARY KEY (uid)
);

0 comments on commit 2227be7

Please sign in to comment.