Skip to content

Commit

Permalink
Merge pull request #51 from DanielEScherzer/patch-1
Browse files Browse the repository at this point in the history
FunctionEvaluator: fix typo `UNIX_TIMESTAPM()` -> `UNIX_TIMESTAMP()`
  • Loading branch information
muglug authored Nov 30, 2024
2 parents c2cf5e5 + 111fd88 commit eab6311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Processor/Expression/FunctionEvaluator.php
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ private static function sqlUnixTimestamp(
}
return \strtotime($column) ?: null;
default:
throw new ProcessorException("MySQL UNIX_TIMESTAPM() SQLFake only implemented for 0 or 1 argument");
throw new ProcessorException("MySQL UNIX_TIMESTAMP() SQLFake only implemented for 0 or 1 argument");
}
}

Expand Down

0 comments on commit eab6311

Please sign in to comment.