Skip to content

Multiple copybooks null values #405

@MaksymFedorchuk

Description

@MaksymFedorchuk

Let's say we have 2 copybooks and file with data
1st is :
01 AAA .
05 BBB PIC X.
2nd is:
01 CCC .
05 DDD PIC X.
file with data:
g
p
c
input_DF = spark.read.format("cobol")
.option("is_record_sequence", "true")
.option("is_text", "true")
.option("encoding", "ascii")
.option("copybooks", copybook_1,copybook_2)
.load(file)
then in dataframe I will have column AAA.BBB having values g,p,c for each record respectively and CCC.DDD having values null,null,null. My expectation is that both columns should have g,p,c values.

Metadata

Metadata

Assignees

No one assigned

    Labels

    acceptedAccepted for implementationbugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions