ADBond / splinkclickhouse

Allows Clickhouse to be used as the execution engine for Splink
MIT License
5 stars 0 forks source link

Fix random sample #1

Closed ADBond closed 2 months ago

ADBond commented 2 months ago

SAMPLE n is only allowed when you specify the method in table creation, so unsuitable for use in a CTE. See relevant docs page for details.

Instead we use a uniform random number on [0, 1] in a WHERE clause.