Uploaded image for project: 'Teiid'
  1. Teiid
  2. TEIID-5585

Insert of a disk backed temporary lob into a temp table is un-readable

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Major Major
    • 12.0
    • None
    • Query Engine
    • None

      This can be reproduced with a script like:

      insert into #temp select 1 as x, cast(repeat('1', 4000) as clob) y;
      insert into #temp select 2, concat((select y from #temp where x = 1), (select y from #temp where x = 1));
      insert into #temp select 3, concat((select y from #temp where x = 2), (select y from #temp where x = 2));
      insert into #temp select 4, concat((select y from #temp where x = 3), (select y from #temp where x = 3));
      insert into #temp select 5, concat((select y from #temp where x = 4), (select y from #temp where x = 4));
      – will fail
      insert into #temp select 6, concat((select y from #temp where x = 5), (select y from #temp where x = 5))

      The #5 clob is unreadable as the backing filestore is removed after insert.

              rhn-engineering-shawkins Steven Hawkins
              rhn-engineering-shawkins Steven Hawkins
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated:
                Resolved: