Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Components
Assignee
Gavin HallidayGavin HallidayReporter
Drea LeedDrea LeedPriority
MinorCompatibility
MinorFix versions
Affects versions
Details
Details
Components
Assignee
Gavin Halliday
Gavin HallidayReporter
Drea Leed
Drea LeedPriority
Compatibility
Minor
Fix versions
Affects versions
Created February 3, 2016 at 6:31 PM
Updated March 3, 2016 at 9:14 AM
Resolved March 3, 2016 at 9:14 AM
When a () isn't specified for a mysql function, the below error is thrown:
The following code throws the exception
Error: UNIMPLEMENTED Record count calculation for operator no_embedbody at /var/lib/jenkins/workspace/LN-Candidate-withplugins-5.4.4-1/LN/centos-6.4-x86_64/HPCC-Platform/ecl/hql/hqlattr.cpp(3004) (0, 0), -1,
Example ecl to cause this error:
import mysql;
Layout := RECORD
STRING user_id; //mysql VARCHAR(100)
STRING hpcc_id; //mysql VARCHAR(100)
STRING workunit_id; //mysql varchar(16)
STRING ddl; //mysql varchar(255)
STRING layout; //mysql text
INTEGER gcid; //mysql int(11)
END;
dataset(Layout) testMySQL := EMBED(mysql : server('dbdcorp-bct.risk.regn.net'),port('3306'),
user('dspdev'), password('********'),database('dsp_dev'))
select user_id,hpcc_id,workunit_id,ddl,layout,gcid from dashboard_layout;
ENDEMBED;
ds := testMySQL();
output(ds);
Is this ecl correct? I've verified my user, password, port and database and sql statement in Mysql workbench.
I ssh'd to the thor master node of the cluster I'm trying to run on and pinged dbdcorp-bct.risk.regn.net, and the ping was able to connect.
I tried running against hthor and the thor cluster; same error both times.