search for: llvm_push

Displaying 2 results from an estimated 2 matches for "llvm_push".

Did you mean: llvm_path
2016 Jun 30
0
Sequential ID Git hook
...tch later. > > This keeps it simple and will work for our purposes, but we'll lose > the ability to debug problems if they happen in the future. > > C. We improve the SQL design to have two tables: > > LLVM_ID: > * ID: int PK auto > * Key: varchar null > > LLVM_PUSH: > * LLVM_ID: int FK (LLVM_ID:ID) > * Repo: varchar not null > * Push: varchar not null > > Every new push updates both tables, returns the ID. Pushes with the > same Key re-use the ID and update only LLVM_PUSH, returns the same ID. > > This is slightly more complic...
2016 Jun 30
6
Sequential ID Git hook
...he ID, but record the original string, so we can match later. This keeps it simple and will work for our purposes, but we'll lose the ability to debug problems if they happen in the future. C. We improve the SQL design to have two tables: LLVM_ID: * ID: int PK auto * Key: varchar null LLVM_PUSH: * LLVM_ID: int FK (LLVM_ID:ID) * Repo: varchar not null * Push: varchar not null Every new push updates both tables, returns the ID. Pushes with the same Key re-use the ID and update only LLVM_PUSH, returns the same ID. This is slightly more complicated, will need to code scripts to gat...