Skip to content

Commit

Permalink
Fixed wrong column name
Browse files Browse the repository at this point in the history
  • Loading branch information
mason authored and wayneliu0019 committed Dec 24, 2024
1 parent d79a278 commit d79e5ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose/init-scripts/initialize.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ BEGIN
IF EXISTS (
SELECT FROM information_schema.columns
WHERE table_name = 'runtime_frameworks'
AND column_name = 'frame_npu_image_01'
AND column_name = 'frame_npu_image'
)
THEN
ALTER TABLE IF EXISTS runtime_frameworks
Expand Down
2 changes: 1 addition & 1 deletion docker/etc/server/initialize.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ BEGIN
IF EXISTS (
SELECT FROM information_schema.columns
WHERE table_name = 'runtime_frameworks'
AND column_name = 'frame_npu_image_01'
AND column_name = 'frame_npu_image'
)
THEN
ALTER TABLE IF EXISTS runtime_frameworks
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/charts/csghub/charts/server/initialize.sql
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ BEGIN
IF EXISTS (
SELECT FROM information_schema.columns
WHERE table_name = 'runtime_frameworks'
AND column_name = 'frame_npu_image_01'
AND column_name = 'frame_npu_image'
)
THEN
ALTER TABLE IF EXISTS runtime_frameworks
Expand Down

0 comments on commit d79e5ae

Please sign in to comment.