497498499500501502503504505506507
command.setFileName(readExpression()); return command; } private Prepared parseAnalyze() { Analyze command = new Analyze(session); if (readIf("SAMPLE_SIZE")) { command.setTop(getPositiveInt()); } return command; }
484485486487488489490491492493494
506507508509510511512513514515516