From:             
Operating system: Ubuntu
PHP version:      5.3.13
Package:          MySQLi related
Bug Type:         Bug
Bug description:Column size is not reserved for all UNION

Description:
------------
When I concatenate two queries with UNION an there are static strings in
the queries, mysqli only reserves a big enough variable for the strings in
the first query.
If there are static strings in the other queries after the UNION, the
strings are just cut off.

Test script:
---------------
$stmt = $this->mysqli->prepare("SELECT 'read' AS Action FROM tbl1
UNION
SELECT CASE status WHEN 0 THEN 'request-received' WHEN 1 THEN 'confirmed'
WHEN 2 THEN 'x' END AS Action FROM tbl2");

$stmt->bind_result($action);
$stmt->execute();

while($stmt->fetch())
{
  echo $action . " ";
}

Expected result:
----------------
expected output is: read request-received confirmed

Actual result:
--------------
actual output is: read request-recei confirmed

The "request-received" is cut off!

-- 
Edit bug report at https://bugs.php.net/bug.php?id=62054&edit=1
-- 
Try a snapshot (PHP 5.4):            
https://bugs.php.net/fix.php?id=62054&r=trysnapshot54
Try a snapshot (PHP 5.3):            
https://bugs.php.net/fix.php?id=62054&r=trysnapshot53
Try a snapshot (trunk):              
https://bugs.php.net/fix.php?id=62054&r=trysnapshottrunk
Fixed in SVN:                        
https://bugs.php.net/fix.php?id=62054&r=fixed
Fixed in SVN and need be documented: 
https://bugs.php.net/fix.php?id=62054&r=needdocs
Fixed in release:                    
https://bugs.php.net/fix.php?id=62054&r=alreadyfixed
Need backtrace:                      
https://bugs.php.net/fix.php?id=62054&r=needtrace
Need Reproduce Script:               
https://bugs.php.net/fix.php?id=62054&r=needscript
Try newer version:                   
https://bugs.php.net/fix.php?id=62054&r=oldversion
Not developer issue:                 
https://bugs.php.net/fix.php?id=62054&r=support
Expected behavior:                   
https://bugs.php.net/fix.php?id=62054&r=notwrong
Not enough info:                     
https://bugs.php.net/fix.php?id=62054&r=notenoughinfo
Submitted twice:                     
https://bugs.php.net/fix.php?id=62054&r=submittedtwice
register_globals:                    
https://bugs.php.net/fix.php?id=62054&r=globals
PHP 4 support discontinued:          
https://bugs.php.net/fix.php?id=62054&r=php4
Daylight Savings:                    https://bugs.php.net/fix.php?id=62054&r=dst
IIS Stability:                       
https://bugs.php.net/fix.php?id=62054&r=isapi
Install GNU Sed:                     
https://bugs.php.net/fix.php?id=62054&r=gnused
Floating point limitations:          
https://bugs.php.net/fix.php?id=62054&r=float
No Zend Extensions:                  
https://bugs.php.net/fix.php?id=62054&r=nozend
MySQL Configuration Error:           
https://bugs.php.net/fix.php?id=62054&r=mysqlcfg

Reply via email to