3.0 SC: crash when running fbt_run with ES EDS
----------------------------------------------

                 Key: CORE-4705
                 URL: http://tracker.firebirdsql.org/browse/CORE-4705
             Project: Firebird Core
          Issue Type: Bug
            Reporter: Pavel Zotov
         Attachments: firebird_log_and_trace_when_fbt_run_against_core_2729.zip

WI-T6.3.0.31698, SuperClassic only.

When running:

fbt_run -b <FB30_SC_home> bugs.core_2729 -o localhost/<port>

-- FB crashes, see attached firebird.log.

File "bugs.core_2729.fbt" contains following test_script section:
"""
    execute block returns (
        user_on_start varchar(32),
        user_on_extds varchar(32),
        same_attach char(1)
    ) as
        declare v_att_ini int;
        declare v_att_eds int;
    begin
    
        user_on_start = current_user;
        v_att_ini = current_connection;
        
        execute statement 'select current_user, current_connection from 
rdb$database'
        into  :user_on_extds, :v_att_eds;
        
     
        same_attach = iif( v_att_ini = v_att_eds, 'Y', 'N');
        suspend;
        
        execute statement 'select current_user, current_connection from 
rdb$database'
        as user 'test' password 'test'
        into :user_on_extds, :v_att_eds;
        
        same_attach = iif( v_att_ini = v_att_eds, 'Y', 'N');
        suspend;
    
    end
"""
-- please see it in SVN: qa/fbt-repository/trunk/tests/bugs/core_2729.fbt

PS. Windows error message appears ONCE if trace is not running and FIVE times 
when trace has been launched before fbt_run for this test.

PPS.
firebird.conf:
=========

DefaultDbCachePages = 32765
LockHashSlots = 22111
TempCacheLimit = 2147483647
RemoteServicePort = 3333
MaxUnflushedWrites = -1
MaxUnflushedWriteTime = -1
TempDirectories = c:\temp
MaxUserTraceLogSize = 99999
FileSystemCacheThreshold = 65536K
AuthServer = Legacy_Auth,Srp
AuthClient = Legacy_Auth,Srp,Win_Sspi
WireCrypt = Disabled
UserManager = Legacy_UserManager
BugcheckAbort = 1



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to