Skip to content

Commit

Permalink
refactor(proto): unify order-related types in proto (#8416)
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <stdrc@outlook.com>
  • Loading branch information
stdrc authored Mar 8, 2023
1 parent e9e74ef commit f4817e9
Show file tree
Hide file tree
Showing 51 changed files with 529 additions and 353 deletions.
2 changes: 1 addition & 1 deletion dashboard/components/Relations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const primaryKeyColumn: Column<RwTable> = {
width: 1,
content: (r) =>
r.pk
.map((order) => order.index)
.map((order) => order.columnIndex)
.map((i) => r.columns[i])
.map((col) => extractColumnInfo(col))
.join(", "),
Expand Down
25 changes: 15 additions & 10 deletions dashboard/proto/gen/batch_plan.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 2 additions & 8 deletions dashboard/proto/gen/catalog.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

109 changes: 109 additions & 0 deletions dashboard/proto/gen/common.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 8 additions & 46 deletions dashboard/proto/gen/expr.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f4817e9

Please sign in to comment.