Closed DenisCarriere closed 3 months ago
Clickhouse best practices recommend avoiding using Nullable
fields
https://clickhouse.com/docs/en/cloud/bestpractices/avoid-nullable-columns
This issue isn't fixed in the substreams sink sql, however Nullable
types shouldn't be used
Alternative setting integer values to 0
and String values to ""
empty string
Having issues using
Nullable
field type https://clickhouse.com/docs/en/sql-reference/data-types/nullableSubstreams test code logic
❌ Errors
when difficulty=123
when difficulty=null (empty)
✅ work around solution
Set null values as
0