Uploaded image for project: 'Apache Avro'
  1. Apache Avro
  2. AVRO-872

Allow interdependancies across IDL schema imports

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 1.5.3
    • java
    • None
    • Reviewed

    Description

      This currently doesn't work because Player depends on Position, but it should:

      $ cat position.avsc 
      {"type":"enum", "name": "Position", "namespace": "avro.examples.baseball",
          "symbols": ["P", "C", "B1", "B2", "B3", "SS", "LF", "CF", "RF", "DH"]
      }
      
      $ cat player.avsc 
      {"type":"record", "name":"Player", "namespace": "avro.examples.baseball",
        "fields": [
         {"name": "number", "type": "int"},
         {"name": "first_name", "type": "string"},
         {"name": "last_name", "type": "string"},
         {"name": "position", "type": {"type": "array", "items": "avro.examples.baseball.Position"} }
        ]
      }
      
      $ cat baseball.avdl 
      @namespace("avro.examples.baseball")
      protocol Baseball {
         import schema "position.avsc";
         import schema "player.avsc";
      }
      
      $ java -jar avro-tools-1.5.1.jar idl baseball.avdl baseball.avpr
      

      Attachments

        1. AVRO-872.patch
          8 kB
          Doug Cutting
        2. AVRO-872.patch
          8 kB
          Doug Cutting
        3. AVRO-872.patch
          8 kB
          Doug Cutting
        4. AVRO-872_4.patch
          8 kB
          William W. Graham Jr
        5. AVRO-872.patch
          9 kB
          Doug Cutting
        6. AVRO_872_commit.patch
          9 kB
          William W. Graham Jr

        Activity

          People

            cutting Doug Cutting
            billgraham William W. Graham Jr
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: