Skip to content
Snippets Groups Projects
Select Git revision
  • 72d0d3b77e947cd62bcf78e66238ae7e5c6ac14a
  • master default
  • ci-bump-test
  • abp-queue
  • new-delete-leaks
  • fused-continuation-and-completion-stealing
  • emper-fix-invalid-conv
  • remote-put-get-free-context-cycle
  • linux-version-construct-on-first-use
  • libstdc++-asserts
  • msan
  • libc++
  • completer-strategies
  • cactus_stack_devel_one_commit
  • client-load-change
  • cppcheck
  • flow
  • cast-if-future
  • async_network2
  • thread_safe_log_config
  • burak
  • attic/clang-release-tls-optimization-debug-and-fix
  • attic/continuation-stealing-dev
23 results

ScheduleOnTest.cpp

Blame
  • Forked from Lehrstuhl für Informatik 4 (Systemsoftware) / manycore / emper
    Source project has a limited visibility.
    readinglist.sql 516 B
    PRAGMA foreign_keys=ON;
    
    CREATE TABLE user (
    	   user_id INTEGER PRIMARY KEY,
    	   user_name VARCHAR (255)
    );
    
    CREATE TABLE paper (
    	   paper_id INTEGER PRIMARY KEY,
    	   paper_source VARCHAR (255),
    	   paper_handle VARCHAR(255),
    	   paper_metadata TEXT,
    	   paper_summary TEXT
    );
    
    CREATE TABLE user_to_paper (
    	   user_id INTEGER,
    	   paper_id INTEGER,
    	   FOREIGN KEY (user_id)  REFERENCES user  (user_id),
    	   FOREIGN KEY (paper_id) REFERENCES paper (paper_id),
    	   UNIQUE (user_id, paper_id) ON CONFLICT IGNORE
    );