SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 63834: SAS/ACCESS® Interface to Hadoop ignores blank values when you use a WHERE clause with the SQL procedure and the option DBIDIRECTEXEC

DetailsHotfixAboutRate It

Blank values are ignored when you subset an Apache Hive table with a WHERE clause in a PROC SQL statement with the option DBIDIRECTEXEC enabled.

The following example shows syntax that might return incorrect results from Hive:

option dbidirectexec;
proc sql;
   select * from hivelib.table-name where variable = '';
quit;

To circumvent the problem, use a DATA step that is similar to the following (and update the italicized parts of the syntax with your correct values):

data zzz;
   set hivelib.table-name;
   where variable = '';
run;

Click the Hot Fix tab in this note to access the hot fix for this issue.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemSAS/ACCESS Interface to Hadoop64-bit Enabled AIX9.459.469.4 TS1M59.4 TS1M6
Microsoft® Windows® for x649.459.469.4 TS1M59.4 TS1M6
64-bit Enabled Solaris9.459.469.4 TS1M59.4 TS1M6
HP-UX IPF9.459.469.4 TS1M59.4 TS1M6
Linux for x649.459.469.4 TS1M59.4 TS1M6
Solaris for x649.459.469.4 TS1M59.4 TS1M6
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.