Obscure error thrown when embedded mysql function definition is incorrect

Description

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.

Conclusion

None

Activity

Show:

Drea Leed February 4, 2016 at 2:34 PM

declaring it as parameterless did work. Gavin & Rodrigo asked me to enter this issue so that the error message could be improved.

Richard Chapman February 4, 2016 at 10:46 AM

Confirmed that the code compiles fine if you add () :

dataset(Layout) testMySQL() := EMBED(mysql : server('dbdcorp-bct.risk.regn.net'),port('3306'),

Richard Chapman February 4, 2016 at 9:12 AM

The error is from the code generator, indicating that we have not yet (and may never) implemented non-function expressions with embedded code. We can probably improve the error message but I'm not sure it's likely we will implement the functionality. If you declare the embed function as a parameterless function it should work.

@ghalliday Any thoughts?

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Components

Assignee

Reporter

Priority

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

Flag notifications