We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a column type is like FixString(16), dbt compile will output no such group error. Might be a mistake in this line: https://github.com/silentsokolov/dbt-clickhouse/blob/b60f67ea24ce870a0108ee8194a6c29cb0d2cf70/dbt/adapters/clickhouse/column.py#L43
FixString(16)
dbt compile
no such group
The regex it is using is https://github.com/silentsokolov/dbt-clickhouse/blob/b60f67ea24ce870a0108ee8194a6c29cb0d2cf70/dbt/adapters/clickhouse/column.py#L23
Should it be char_size = int(match_sized.group(1))?
char_size = int(match_sized.group(1))
The text was updated successfully, but these errors were encountered:
Fix regex group #20
6f99be0
Thx!
Sorry, something went wrong.
No branches or pull requests
When a column type is like
FixString(16)
,dbt compile
will outputno such group
error. Might be a mistake in this line: https://github.com/silentsokolov/dbt-clickhouse/blob/b60f67ea24ce870a0108ee8194a6c29cb0d2cf70/dbt/adapters/clickhouse/column.py#L43The regex it is using is https://github.com/silentsokolov/dbt-clickhouse/blob/b60f67ea24ce870a0108ee8194a6c29cb0d2cf70/dbt/adapters/clickhouse/column.py#L23
Should it be
char_size = int(match_sized.group(1))
?The text was updated successfully, but these errors were encountered: