if (generateDefinitionLabels) {
this.out.println("\td2rq:propertyDefinitionLabel \"" + toLabel(column) + "\";");
}
this.out.println("\td2rq:column \"" + column.qualifiedName() + "\";");
DataType colType = this.schema.columnType(column);
String xsd = colType.rdfType();
if (xsd != null && !"xsd:string".equals(xsd)) {
// We use plain literals instead of xsd:strings, so skip
// this if it's an xsd:string
this.out.println("\td2rq:datatype " + xsd + ";");
}