Bug 61712 - numeric constant in SELECT list shows up as blanks.
Summary: numeric constant in SELECT list shows up as blanks.
Status: RESOLVED WORKSFORME
Alias: None
Product: LibreOffice
Classification: Unclassified
Component: Base (show other bugs)
Version:
(earliest affected)
4.1.0.0.alpha0+ Master
Hardware: Other Linux (All)
: medium normal
Assignee: Not Assigned
URL:
Whiteboard:
Keywords: regression
Depends on:
Blocks:
 
Reported: 2013-03-02 20:44 UTC by Terrence Enger
Modified: 2013-03-15 12:31 UTC (History)
0 users

See Also:
Crash report or crash signature:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Terrence Enger 2013-03-02 20:44:49 UTC
Running against an ODBC connection, the query    

    select number
         , 'abc' as aWord
         , 123   as anInteger
      from table1
     where number = '0123456789'

displays

    number       aWord    anInteger
    ------       -----    ---------
    0123456789   abc

This is a regression since LibreOffice 3.6.4.3 (2ef5aff), which
correctly displays


    number       aWord    anInteger
    ------       -----    ---------
    0123456789   abc      123


My LibreOffice is master commit b355324, pulled around 2013-03-01
16:30 UTC, built and running on ubuntu-natty (11.04) 32-bit,
configured as ...

    --enable-dbgutil
    --enable-crashdump
    --disable-build-mozilla
    --without-system-postgresql
    --without-myspell-dicts
    --without-help
    --with-extra-buildid
Comment 1 Terrence Enger 2013-03-15 12:31:09 UTC
The problem is in abeyance with master commit 51a18f9 pulled around
2013-03-14 18:20 UTC.