Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions platform/ingest/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,8 @@ func (ip *SqlLowerer) GenerateIngestContent(table *chLib.Table,
encodings map[schema.FieldEncodingKey]schema.EncodedFieldName) ([]AlterStatement, types.JSON, []NonSchemaField, error) {

if len(table.Config.Attributes) == 0 {
// This implies that the table has no `attributes_*` columns, most likely it's a Bring Your Own Table (BYOT) situation, ref: https://github.com/QuesmaOrg/quesma/pull/1484
logger.Error().Msg("received non-schema fields but no attributes config found. Extra fields will not be stored")
return nil, data, nil, nil
}

Expand Down
Loading