Re: [Firebird-devel] Hex notation bug with SMALLINT

2013-08-04 Thread Mark Rotteveel
On 4-8-2013 01:44, Adriano dos Santos Fernandes wrote: On 03-08-2013 03:55, Mark Rotteveel wrote: I just saw this question on Stackoverflow http://stackoverflow.com/questions/18026907/firebird-insert-hex-values-into-tables-arithmetic-exception And I wondered if it isn't a bug that hex values

[Firebird-devel] [FB-Tracker] Created: (CORE-4159) Incorrect memory statistics is reported

2013-08-04 Thread Dmitry Yemanov (JIRA)
Incorrect memory statistics is reported --- Key: CORE-4159 URL: http://tracker.firebirdsql.org/browse/CORE-4159 Project: Firebird Core Issue Type: Bug Components: Engine Affects Versions:

[Firebird-devel] Firebird 3 crash - Timer

2013-08-04 Thread Adriano dos Santos Fernandes
Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7577b700 (LWP 18276)] 0x6da0 in ?? () (gdb) bt #0 0x6da0 in ?? () #1 0x7781513f in Why::(anonymous namespace)::TimerEntry::timeThread () at

Re: [Firebird-devel] Hex notation bug with SMALLINT

2013-08-04 Thread Dmitry Yemanov
04.08.2013 11:20, Mark Rotteveel wrote: Ok, lets not call it a bug, but an area of potential improvement: based on the context it should be possible to deduce that the literal should be a smallint. Therefor it should be possible to handle 0x8000 as -32768 when assigned to a smallint and as

Re: [Firebird-devel] Firebird 3 crash - Timer

2013-08-04 Thread Vlad Khorsun
- Original Message - From: Adriano dos Santos Fernandes adrian...@gmail.com To: firebird-devel firebird-devel@lists.sourceforge.net Sent: Sunday, August 04, 2013 6:25 AM Subject: [Firebird-devel] Firebird 3 crash - Timer Program received signal SIGSEGV, Segmentation fault. [Switching

Re: [Firebird-devel] Firebird 3 crash - Timer

2013-08-04 Thread Vlad Khorsun
Adriano, any details ? is it reproducible ? Regards, Vlad -- Get your SQL database under version control now! Version control is standard for application code, but databases havent caught up. So what steps can you

Re: [Firebird-devel] fb 2.5.2 win32 crash (access violation)

2013-08-04 Thread Vlad Khorsun
I've got dump files available; if someone in particular would like them, I'll zip and provide a download URL, privately. Provide it to me, please. But i'm afraid it is impossible to fix it without reproducing :( Regards, Vlad

[Firebird-devel] [FB-Tracker] Created: (CORE-4160) Exceptions with parameters distort not ASCII characters

2013-08-04 Thread Simonov Denis (JIRA)
Exceptions with parameters distort not ASCII characters --- Key: CORE-4160 URL: http://tracker.firebirdsql.org/browse/CORE-4160 Project: Firebird Core Issue Type: Bug Components:

[Firebird-devel] [FB-Tracker] Created: (CORE-4161) User can not insert records into table with column generated by default as identity in its DDL

2013-08-04 Thread Pavel Zotov (JIRA)
User can not insert records into table with column generated by default as identity in its DDL Key: CORE-4161 URL: http://tracker.firebirdsql.org/browse/CORE-4161

Re: [Firebird-devel] isc_dpb_set_db_sql_dialect ignored in FB3?

2013-08-04 Thread Mark Rotteveel
On 3-8-2013 19:42, Dmitry Yemanov wrote: 03.08.2013 19:12, Mark Rotteveel wrote: A test in Jaybird for warnings registered on a connection uses isc_dpb_set_db_sql_dialect to change a dialect 3 database to 1. In Firebird 2.5 and earlier this triggers a warning (Database dialect being changed

[Firebird-devel] [FB-Tracker] Created: (CORE-4162) Changing dialect through DPB does not return a warning

2013-08-04 Thread Mark Rotteveel (JIRA)
Changing dialect through DPB does not return a warning -- Key: CORE-4162 URL: http://tracker.firebirdsql.org/browse/CORE-4162 Project: Firebird Core Issue Type: Bug Components:

[Firebird-devel] Changes with handling DB_KEY?

2013-08-04 Thread Mark Rotteveel
Has anything changed in Firebird 3.0 with the stability of RDB$DB_KEY or how RDB$DB_KEY works? Jaybird uses RDB$DB_KEY to refresh (and update) rows in updatable ResultSets, one of the tests now fails because it cannot find the row it wants to refresh (it looks like the update fails as well,

[Firebird-devel] Type BOOLEAN in FB3

2013-08-04 Thread Simonov Denis
select 1 from rdb$database where true is true Work is correct select 1 from rdb$database where (1=1) and true Work is correct select 1 from rdb$database where (1=1) is true Invalid token. Dynamic SQL Error. SQL error code = -104. Token unknown - line 3, column 13. is. And shall be or

[Firebird-devel] [FB-Tracker] Created: (CORE-4163) Configuration fbtrace.conf contains syntax errors

2013-08-04 Thread Mark Rotteveel (JIRA)
Configuration fbtrace.conf contains syntax errors - Key: CORE-4163 URL: http://tracker.firebirdsql.org/browse/CORE-4163 Project: Firebird Core Issue Type: Bug Components: Engine

Re: [Firebird-devel] Changes with handling DB_KEY?

2013-08-04 Thread Mark Rotteveel
On 4-8-2013 14:39, Mark Rotteveel wrote: Has anything changed in Firebird 3.0 with the stability of RDB$DB_KEY or how RDB$DB_KEY works? Jaybird uses RDB$DB_KEY to refresh (and update) rows in updatable ResultSets, one of the tests now fails because it cannot find the row it wants to refresh (it

Re: [Firebird-devel] Changes with handling DB_KEY?

2013-08-04 Thread Mark Rotteveel
On 4-8-2013 15:21, Mark Rotteveel wrote: On 4-8-2013 14:39, Mark Rotteveel wrote: Has anything changed in Firebird 3.0 with the stability of RDB$DB_KEY or how RDB$DB_KEY works? Jaybird uses RDB$DB_KEY to refresh (and update) rows in updatable ResultSets, one of the tests now fails because it

Re: [Firebird-devel] Firebird 3 crash - Timer

2013-08-04 Thread Adriano dos Santos Fernandes
On 04-08-2013 05:55, Vlad Khorsun wrote: Adriano, any details ? is it reproducible ? Nothing I can say for sure. I leave server running and testing the application (via Jaybird). It may have happened that the application terminated with opened connection. Adriano