Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| id | serial | 10 | √ | nextval('bugs_id_seq'::regclass) |
|
|
|||||
| github_issue_number | int4 | 10 | √ | null |
|
|
|||||
| repo | text | 2147483647 | 'aphrodite-engine/aphrodite-engine'::text |
|
|
||||||
| title | text | 2147483647 | null |
|
|
||||||
| state | text | 2147483647 | √ | null |
|
|
|||||
| created_at | date | 13 | √ | null |
|
|
|||||
| closed_at | date | 13 | √ | null |
|
|
|||||
| severity | text | 2147483647 | √ | null |
|
|
|||||
| category | text | 2147483647 | √ | null |
|
|
|||||
| origin | text | 2147483647 | √ | null |
|
|
|||||
| affects_versions | _text | 2147483647 | √ | null |
|
|
|||||
| fixed_in_version | text | 2147483647 | √ | null |
|
|
|||||
| description | text | 2147483647 | √ | null |
|
|
|||||
| int4 | 10 | √ | null |
|
|
||||||
| reproduction_steps | text | 2147483647 | √ | null |
|
|
|||||
| workaround | text | 2147483647 | √ | null |
|
|
|||||
| updated_at | timestamptz | 35,6 | √ | now() |
|
|
|||||
| inheritance_note | text | 2147483647 | √ | null |
|
|
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| bugs_pkey | Primary key | Asc | id |
| idx_bugs_category | Performance | Asc | category |
| idx_bugs_origin | Performance | Asc | origin |
| idx_bugs_severity | Performance | Asc | severity |
| idx_bugs_state | Performance | Asc | state |
Check Constraints
| Constraint Name | Constraint |
|---|---|
| bugs_category_check | (category = ANY (ARRAY['regression'::text, 'upstream_inherited'::text, 'aphrodite_specific'::text, 'quantization'::text, 'serving'::text, 'sampler'::text, 'model_support'::text, 'performance'::text, 'memory'::text, 'installation'::text, 'api'::text, 'lora'::text, 'speculative_decoding'::text, 'multimodal'::text, 'other'::text])) |
| bugs_origin_check | (origin = ANY (ARRAY['vllm_upstream'::text, 'aphrodite_added'::text, 'interaction'::text, 'unknown'::text])) |
| bugs_state_check | (state = ANY (ARRAY['open'::text, 'closed'::text])) |
| bugs_severity_check | (severity = ANY (ARRAY['critical'::text, 'high'::text, 'medium'::text, 'low'::text, 'unknown'::text])) |