Skip to content

Commit

Permalink
add fixme-s
Browse files Browse the repository at this point in the history
  • Loading branch information
kgyrtkirk committed Feb 27, 2025
1 parent d47681f commit 6eaaa4d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,9 @@ public boolean isGlobal()
@Override
public boolean isProcessable()
{
return left.isProcessable() && right.isGlobal();
// FIXME: shouldn't this be?
//return left.isProcessable() && right.isGlobal();
return false;
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public boolean isCacheable(boolean isBroker)
@Override
public boolean isGlobal()
{
// FIXME: this feels like dodgy to me - but this is how it was before
return query.getDataSource().isGlobal();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ public boolean isGlobal()
@Override
public boolean isProcessable()
{
// FIXME this seems illogical
return false;
}

Expand Down

0 comments on commit 6eaaa4d

Please sign in to comment.