Karol Bieniaszewski

Results 26 issues of Karol Bieniaszewski

Hi Firebird project have announced lucene full text search udr. I have tried to run Lucene full text search install script (`fts$install.sql`) on Firebird 4 and script hang in Flamerobin....

Hi, this is realy big task but if you do not merge this i will continue it as separate repository. And i suppose this will never go up because repos...

As the #3750 is now in pull requests and will be soon available, i have moved my comment into new feature request for simpler processing. Please add `partial referential constraints`...

Now when we start Firebird service there is no log in Firebird.log. Worse that also there is no log about recovery start after bad closing/crash. Please add 3 logs into...

1. Moved RenderOleData to Vcl specific units. 2. Introduce KeysToShiftState, as method, to be available in whole hierarchy (FMX) without specifing Unit file name (prevent circular unit ref). 3. Introduce...

``` Create database with WIN1250 charset; ``` then ``` alter character set win1250 set default collation PXW_PLK; commit; ``` ``` CREATE TABLE TEST_CCC ( A VARCHAR(100) COLLATE PXW_PLK, B VARCHAR(100)...

Open anyd Firebird 3 database. Go to System tables and open properties of `SEC$GLOBAL_AUTH_MAPPING`. There are wrong field sizes like `Char(0)` othere sizes are also wrong ``` SEC$MAP_NAME CHAR(10) CHARACTER...

Hi when you go to function e.g. udf and look at function dependencies you see e.g. that some procedure use it. But when you go to that procedure and you...

Hi As i do not have good place for discussion about some next steps, so i have created topic here. The question for next patch. Is it possible to add...

Open for Discussion

```SQL CREATE DOMAIN DOMAIN_REGION VARCHAR(5); CREATE TABLE REGION (NAME DOMAIN_REGION ); CREATE INDEX IXAE_REGION__NAME ON REGION COMPUTED BY(UPPER(NAME)); commit; INSERT INTO REGION(NAME) VALUES('12345'); INSERT INTO REGION(NAME) VALUES('abcde'); commit; ALTER DOMAIN...