~mordred/sqltoast/linker-issues

« back to all changes in this revision

Viewing changes to sqltoast/parser/identifier.h

  • Committer: Jay Pipes
  • Date: 2010-07-08 17:53:50 UTC
  • Revision ID: jpipes@serialcoder-20100708175350-j72mrkd668xtwtqv
Fixes referential constraints on table and adds more tests for referential constraints.

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
    }
171
171
    if (qualified_identifier_attr* val = boost::get<qualified_identifier_attr>(&value))
172
172
    {
173
 
      stream << val->first << "," << val->second;
 
173
      stream << val->first << "." << val->second;
174
174
    }
175
175
    return stream;
176
176
  }