@514labs/moose-lib 0.6.286-ci-3-g6b3854bb → 0.6.286-ci-10-ga0ea52d0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -964,8 +964,6 @@ var toColumns = (t, checker, options) => {
964
964
  `Column '${prop.name}' cannot have both ClickHouseDefault and ClickHouseMaterialized. Use one or the other.`
965
965
  );
966
966
  }
967
- const docComment = prop.getDocumentationComment(checker);
968
- const comment = docComment.length > 0 ? (0, import_typescript3.displayPartsToString)(docComment) : null;
969
967
  return {
970
968
  name: prop.name,
971
969
  data_type: dataType,
@@ -976,8 +974,7 @@ var toColumns = (t, checker, options) => {
976
974
  materialized: materializedValue,
977
975
  ttl: handleTtl(type, checker),
978
976
  codec: handleCodec(type, checker),
979
- annotations,
980
- comment
977
+ annotations
981
978
  };
982
979
  });
983
980
  };