Skip to content

Commit

Permalink
Skip dim filter in query when passing *
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrunbauer committed Apr 14, 2024
1 parent 8386176 commit 942a08c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions adagucserverEC/CDBAdapterPostgreSQL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,8 @@ CDBStore::Store *CDBAdapterPostgreSQL::getFilesAndIndicesForDimensions(CDataSour
CT::string *dimVals = dimMap[dimName];

if (dimVals->count == 1) {
if (dimVals[0].equals("*")) continue;

const char *dimVal = dimVals[0].c_str();

// If dimension value is a number, find closest value.
Expand Down

0 comments on commit 942a08c

Please sign in to comment.