[Firebird-devel] [FB-Tracker] Created: (CORE-6458) Impossible to cancel query

2020-12-22 Thread Artyom Smirnov (JIRA)
Reporter: Artyom Smirnov To reproduce it enough to create long query in isql and try to cancel it with Ctlr-C: create database 'localhost:/tmp/test'; create sequence g; select count(i) from (select gen_id(g,1) i from rdb$types a,rdb$types b,rdb$types c,rdb$types d); Looks like it was br

[Firebird-devel] [FB-Tracker] Created: (CORE-6338) Embedded server crashing on short connects to database which want to be sweeped

2020-06-19 Thread Artyom Smirnov (JIRA)
Issue Type: Bug Components: Engine Affects Versions: 3.0.5 Environment: linux Reporter: Artyom Smirnov In some cases firebird server can craft such database, which crashes embedded server if embedded connection too short to complete sweep. To

Re: [Firebird-devel] Ruby gem to convert html into markdown

2020-01-18 Thread Artyom Smirnov
On 17.01.2020 16:29, Mark Rotteveel wrote: On 2020-01-17 11:32, Dimitry Sibiryakov wrote: 17.01.2020 08:14, Mark Rotteveel wrote: That is the whole point of markdown: that it is a human-readable plain text file that can be converted to better looking HTML or PDF with a tool.   The main feat

[Firebird-devel] [FB-Tracker] Created: (CORE-6038) Srp user manager sporadically creates users which can not attach

2019-03-29 Thread Artyom Smirnov (JIRA)
Components: Engine Affects Versions: 3.0.4 Environment: Ubuntu 18.10 x86_64, Cent OS 6/7 x86_64 Reporter: Artyom Smirnov To reproduce this bug enough to create user/try to login/drop user many times. I digged into Srp manager and found it happen with some "

[Firebird-devel] [FB-Tracker] Created: (CORE-6027) Server hang on new attachment right after trace session stop

2019-03-19 Thread Artyom Smirnov (JIRA)
Components: TRACEMGR Affects Versions: 3.0.4 Environment: Linux x86_64 Reporter: Artyom Smirnov Test script (https://gist.github.com/artyom-smirnov/076879ff9edff7f2b58147eb5665f0ed): #!/bin/bash DB_PATH=/tmp/testdb.fdb DB=localhost:$DB_PATH ISQL="/opt/firebird/bin/is

[Firebird-devel] [FB-Tracker] Created: (CORE-6012) Possible server/utilities hang because of infinity loop in AbstractString::vprintf

2019-02-25 Thread Artyom Smirnov (JIRA)
: Firebird Core Issue Type: Bug Components: Engine Affects Versions: 4.0 Beta 1, 3.0.4, 3.0.3, 4.0 Alpha 1, 3.0.2, 3.0.1, 3.0.0, 4.0 Initial, 3.0.5, 4.0 Beta 2, 3.0.6 Reporter: Artyom Smirnov The problem is because only result of vsnprintf checked, but not cause of

[Firebird-devel] [FB-Tracker] Created: (CORE-5972) External engine trigger crashing server if table have computed field

2018-12-06 Thread Artyom Smirnov (JIRA)
: Bug Components: Engine Affects Versions: 4.0 Beta 1, 3.0.5 Reporter: Artyom Smirnov Reproduction steps (on master): 1. Create simple UDR trigger in examples/udr/Triggers.cpp and build it. FB_UDR_BEGIN_TRIGGER(dummy) FB_UDR_EXECUTE_TRIGGER

[Firebird-devel] [FB-Tracker] Created: (CORE-5665) Inconsistency of formatting double precision values between linux and windows

2017-11-20 Thread Artyom Smirnov (JIRA)
Issue Type: Bug Components: ISQL Affects Versions: 3.0.2 Reporter: Artyom Smirnov Priority: Minor Also probably inconsistency of formatting values in range -1 < 0 < 1. Padding zeros not always rendered right. set list; select char_length(cast(

[Firebird-devel] [FB-Tracker] Created: (CORE-5645) Wrong transaction can be passed to external engine

2017-10-19 Thread Artyom Smirnov (JIRA)
/ Client Library, Engine Affects Versions: 4.0 Alpha 1, 3.0.2 Reporter: Artyom Smirnov Can't give reproducible code+query right now, but may be description may be enough. In ExtEngineManager.cpp in ExtEngineManager::ExternalContextImpl::setTransaction newTransaction obtained

[Firebird-devel] [FB-Tracker] Created: (CORE-5409) Non-utf8 input from stdin in isql seems broken on linux

2016-11-30 Thread Artyom Smirnov (JIRA)
: ISQL Affects Versions: 3.0.1, 3.0.0, 3.0.2 Environment: Linux Reporter: Artyom Smirnov Priority: Minor Prepare file in some non-utf8 encoding. Found this example text in fbt-repository: echo 'recreate table "ĄČĘĢÆĖŠŚÖÜØ£"( "ą

Re: [Firebird-devel] src_bundle.sh

2016-03-28 Thread Artyom Smirnov
> 28 марта 2016 г., в 17:25, Dimitry Sibiryakov написал(а): > > 28.03.2016 16:16, Jim Starkey wrote: >> nothing else was more suitable. > > But still clone of Firebird repository is 10 times bigger than its sources. > If you do not need full history, you can do s

[Firebird-devel] [FB-Tracker] Created: (CORE-4676) Crash on unexpected client disconnection with opened transaction

2015-01-29 Thread Artyom Smirnov (JIRA)
Components: Engine Affects Versions: 2.5.4 Reporter: Artyom Smirnov Reproducing: Run isql and execute: create database 'a'; create table a(id int); insert into a values('1'); Do not commit anything. Then do: killall -9 isql Server will crash. Bug prob

[Firebird-devel] [FB-Tracker] Created: (CORE-4288) Server crashes if execute DDL statement in autonomous transaction

2013-12-05 Thread Artyom Smirnov (JIRA)
Components: Engine Affects Versions: 2.5.3 Reporter: Artyom Smirnov set term !; execute block as begin in autonomous transaction do execute statement('create table a(a int)'); end! set term ;! -- This message is automatically generated by JIRA. - If

[Firebird-devel] [FB-Tracker] Created: (CORE-4254) Segfault after trying to create cyclic dependency in table and doing select from this table in same connection

2013-10-28 Thread Artyom Smirnov (JIRA)
://tracker.firebirdsql.org/browse/CORE-4254 Project: Firebird Core Issue Type: Bug Components: Engine Affects Versions: 2.5.2 Update 1, 2.5.3 Environment: Ubuntu 13.10 x86_64 RHEL 5.4 x86 Reporter: Artyom Smirnov Cyclic dependency will not appear, as