Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
haf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
haf
Compare revisions
c5fd1ba15ed77a2d2ccce6a0fc8b8801e296ace9 to 629875a1852b5a8120f8f2abd13dba6df92ef2e6
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
hive/haf
Select target project
No results found
629875a1852b5a8120f8f2abd13dba6df92ef2e6
Select Git revision
Swap
Target
hive/haf
Select target project
hive/haf
dan/haf
2 results
c5fd1ba15ed77a2d2ccce6a0fc8b8801e296ace9
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
fix regression with update: ignore all shadow tables in hash
· 629875a1
Marcin
authored
2 months ago
629875a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/hive_fork_manager/update.sql
+1
-1
1 addition, 1 deletion
src/hive_fork_manager/update.sql
with
1 addition
and
1 deletion
src/hive_fork_manager/update.sql
View file @
629875a1
...
...
@@ -332,7 +332,7 @@ BEGIN
WHERE
ist
.
table_schema
=
'hafd'
AND
ist
.
table_type
=
'BASE TABLE'
AND
spr
.
tables
IS
NULL
AND
ist
.
table_name
NOT
ILIKE
'shadow_
hafd_
%'
;
-- shadow tables
, only possible for state providers
AND
ist
.
table_name
NOT
ILIKE
'shadow_%'
;
-- shadow tables
END
;
$
BODY
$
;
...
...
This diff is collapsed.
Click to expand it.