Skip to content

Commit

Permalink
fix type param
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlondono committed Nov 29, 2024
1 parent cdca975 commit 7ed1938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/athena_sql/lib/src/schemas/ddl/table/column.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ColumnSchema extends CreateTableClause {
QueryString typeParameters() => QueryString()
.keyword(_type)
.condition(
_parameters != null && _parameters.isNotEmpty,
_parameters != null && _parameters!.isNotEmpty,
(q) => q.parentheses((q) =>
q.commaSeparated(_parameters!.map((e) => QueryString.user(e)))))
.condition(
Expand Down

0 comments on commit 7ed1938

Please sign in to comment.