|
|
|
|
|
by zX41ZdbW
1279 days ago
|
|
I checked DuckDB and your statement appears to be untrue. >>> con.execute("CREATE TABLE passwords (hash TEXT, count INT)")
<duckdb.DuckDBPyConnection object at 0x7fc7bceb55f0>
>>> con.execute("CREATE INDEX ix_hash ON passwords (hash)")
<duckdb.DuckDBPyConnection object at 0x7fc7bceb55f0>
>>> con.execute("COPY passwords FROM 'pwned-passwords-sha1-ordered-by-hash-v8.txt' (SEPARATOR ':')")
100%
100%
It froze in an attempt to load the data. Nothing happens after it displays 100%. |
|