uima-ducc-database/src/main/java/org/apache/uima/ducc/database/RmQLoad.java [69:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                if ( p.isMeta() ) continue;
                if ( p.isPrivate() ) continue;
                buf.append("'");
                buf.append(p.pname());
                buf.append("'");
                buf.append(":");
                switch(p.type()) {
                    case String:
                    case UUID:
                        buf.append("'");           // must quote strings
                        buf.append(vals.get(p.columnName()));
                        buf.append("'");                                   
                        break;
                    case Boolean:
                        boolean bv = (boolean) vals.get(p.columnName());
                        buf.append(bv ? "True" : "False"); // must pythonify the booleans
                        break;
                    case Integer:
                    case Long:
                    case Double:
                    	buf.append(vals.get(p.columnName()).toString());
                        break;
                    default:
                        // RmNodes doesn't use other types
                        break;
                }
                buf.append(",");
            }
            buf.append("},\n");            
        }    
        buf.append("]");
        return buf.toString();
    }

    public static void main(String[] args)
    {
        if ( args.length != 1 ) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uima-ducc-database/src/main/java/org/apache/uima/ducc/database/RmShareState.java [68:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                if ( p.isMeta() ) continue;
                if ( p.isPrivate() ) continue;
                buf.append("'");
                buf.append(p.pname());
                buf.append("'");
                buf.append(":");
                switch(p.type()) {
                    case String:
                    case UUID:
                        buf.append("'");           // must quote strings
                        buf.append(vals.get(p.columnName()));
                        buf.append("'");                                   
                        break;
                    case Boolean:
                        boolean bv = (boolean) vals.get(p.columnName());
                        buf.append(bv ? "True" : "False"); // must pythonify the booleans
                        break;
                    case Integer:
                    case Long:
                    case Double:
                    	buf.append(vals.get(p.columnName()).toString());
                        break;
                    default:
                        // RmNodes doesn't use other types
                        break;
                }
                buf.append(",");
            }
            buf.append("},\n");            
        }    
        buf.append("]");
        return buf.toString();
    }

    public static void main(String[] args)
    {
        if ( args.length != 1 ) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



