8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00
Commit Graph

57307 Commits

Author SHA1 Message Date
Alexander Zhdanov
695082ece7 added the ability to change sql security option in alter package 2023-10-26 00:39:41 +03:00
Alexander Zhdanov
5b620936e2 added the ability to change sql security opt in alter procedure 2023-10-25 19:27:43 +03:00
GitHub Action
858d5b0c0d increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-24 20:14:07 +00:00
Vlad Khorsun
81d2d8ed36 Fixed bug #7779 : Firebird 4.0.3 is constantly crashing with the same symptoms (fbclient.dll) 2023-10-24 18:27:02 +03:00
TreeHunter
897ac0c650
Add FORMAT clause to convert datetime types to string and vice versa #2388 (#7629)
* Add FORMAT clause to convert datetime types to string and vice versa

* Add tests for FORMAT clause

* Fixes after review

* Change TZD to TZR

* Change inline variables back to static

* Add README documentation

* Add ability to use " in raw string and ...

Use session timezone if timezone is not specified.
Add ability to use + sign in timezone offset.
Add truncating string exception.

* Move util methods from BOOST_AUTO_TEST_SUITE

* Switch back to inline variables

* Consider charset in the format string

* Add ability to write patterns without separators

* Use printf to add extra zeros

Also add extra zeros to the year patterns.

* Replace template exception with a plain function

* Clean code after review

* Fix bug with TZH:TZM when TZH is 0

* Add TZR to STRING to DATE

---------

Co-authored-by: Artyom Ivanov <artyom.ivanov@red-soft.ru>
2023-10-24 07:01:58 -03:00
GitHub Action
1fe1abd366 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-23 20:12:50 +00:00
Vlad Khorsun
f3f231a0a3 Improvement #7814 : Don't update database-level statistics on every page cache operation. 2023-10-23 20:16:01 +03:00
GitHub Action
8124b14e7c increment build number
Some checks reported errors
continuous-integration/drone/push Build was killed
2023-10-18 20:14:16 +00:00
AlexPeshkoff
359d4b89b3 Fixed build after changes in AutoPtr 2023-10-18 11:47:21 +03:00
AlexPeshkoff
5453f7c4d6 Restored constness propagation in AutoPtr on Adriano's request 2023-10-18 11:47:21 +03:00
GitHub Action
e3de2679a6 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-17 20:14:08 +00:00
Dmitry Yemanov
72ee7d2613 This should fix regression introduced for #6674 (aka CORE-6440) 2023-10-17 13:01:30 +03:00
Alexander Zhdanov
9b823e6996 Add ability to change sql security option in alter function 2023-10-16 21:41:41 +03:00
GitHub Action
3b5e64db97 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-14 20:12:41 +00:00
Dmitry Yemanov
96db102a29 Modern way of avoiding the compiler-default implementation 2023-10-14 19:13:27 +03:00
Dmitry Yemanov
1d51ee19a5 Revert "Minor optimization for NOT IN with nulls inside the list: do not evaluate the remaining items after the first NULL is found"
This reverts commit c7d825b6d8.
2023-10-14 19:04:38 +03:00
GitHub Action
8e458c7bd0 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-13 20:14:08 +00:00
Dmitry Yemanov
09792018d6 Fixed crash/hang due to compiler implementation of the assignment operator. StatusVector class in its current implementation is not intended for copying. 2023-10-13 18:10:13 +03:00
Dmitry Yemanov
c7d825b6d8 Minor optimization for NOT IN with nulls inside the list: do not evaluate the remaining items after the first NULL is found 2023-10-13 10:13:13 +03:00
Dmitry Yemanov
40445aa881 Fixed #7795: NOT IN <list> returns incorrect result if NULLs are present inside the value list 2023-10-13 10:11:14 +03:00
GitHub Action
8e68a6e6a9 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-11 20:13:42 +00:00
Adriano dos Santos Fernandes
c2328fe14c Task #7796 - Update official Windows compiler to VS 17.7.4. 2023-10-11 06:39:58 -03:00
Adriano dos Santos Fernandes
ec4f175e30 Revert "Update VS docker build to 17.7.4"
This reverts commit e74cf8a579.
2023-10-11 06:37:32 -03:00
AlexPeshkoff
7870a3b513 Fixed minor "make clean" bug 2023-10-11 09:05:32 +03:00
GitHub Action
d12aea3c7e increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-10 20:12:34 +00:00
Vlad Khorsun
e74cf8a579 Update VS docker build to 17.7.4
While there is a channel with "most current" version, I have no idea how to set --version value to use it.
2023-10-10 18:42:57 +03:00
GitHub Action
4412d7dd3d increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-09 20:12:23 +00:00
AlexPeshkoff
27e3dc7649 Fixed #7762: Crash on "Operating system call pthread_mutex_destroy failed. Error code 16" in log
(cherry picked from commit 7adea662ff)
2023-10-09 16:01:01 +03:00
GitHub Action
baa7156862 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-08 20:12:54 +00:00
Dmitry Yemanov
b5511b9ad2 This should fix the regression for functions inside package header declarations. 2023-10-08 16:23:51 +03:00
GitHub Action
d9b5cca4a0 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-06 20:13:40 +00:00
Alexandr
5327ed835c
Added the ability to change deterministic option (#7758)
* Added the ability to change deterministic option
Added the ability to change deterministic opt without specifiying the entire body of the function.
Extended "ALTER FUNCTION" syntax:
ALTER FUNCTION <name> DETERMINISTIC;
ALTER FUNCTION <name> NOT DETERMINISTIC;

* added const qualifier to flag, removed nested if/else

* added doc

---------

Co-authored-by: Alexander Zhdanov <alexander.zhdanov@red-soft.ru>
2023-10-06 16:44:43 +03:00
effb648813 Fix #7786 and SHOW output for text BLOBs domains 2023-10-06 13:51:26 +03:00
Vlad Khorsun
cbb1e9ff7c Update zlib to 1.13, see #7755 2023-10-06 01:09:19 +03:00
GitHub Action
f3e0fe3d52 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-05 20:13:38 +00:00
AlexPeshkoff
e7e4a776ed Minor security measure - avoid sending of authentication block over the wire (from ExtDS) 2023-10-05 15:59:54 +03:00
GitHub Action
1ae29802be increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-04 20:13:46 +00:00
0e5ea8f0d2 Suppress show default collation of it match charset name 2023-10-04 16:08:14 +03:00
Adriano dos Santos Fernandes
bc6d274e86 Fix #7777 - Firebird v6 cannot restore backup from prior versions when UDF is used. 2023-10-04 07:59:02 -03:00
Vlad Khorsun
585447eaf3 Avoid parsing same metadata for every message when executing batch statement.
While it is not direct fix for #7770 (restore takes 25% more time vs 4.0.0), it should improve performance in this case too.
2023-10-04 00:19:00 +03:00
GitHub Action
5a8e4c3fff increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-03 20:14:12 +00:00
Adriano dos Santos Fernandes
056daddfb8 Fix regression (bugs/gh_7466_plans_tracking_test.py), thanks to Pavel Zotov. 2023-10-03 06:54:24 -03:00
8dbdc2ae3f Separate charset output: full for SHOW and minimal for EXTRACT 2023-10-03 11:13:27 +03:00
GitHub Action
212a573b27 increment build number
All checks were successful
continuous-integration/drone/push Build is passing
2023-10-01 20:12:31 +00:00
Vlad Khorsun
b857630cb5 Fixed bug #7772 : Blob corruption in FB4.0.3 (embedded) 2023-10-01 10:54:49 +03:00
GitHub Action
ae166a2185 increment build number 2023-09-30 20:12:26 +00:00
Adriano dos Santos Fernandes
c88d9ba35c Remove dependency of engine in isql project in Windows. 2023-09-29 19:01:35 -03:00
Adriano dos Santos Fernandes
4070fe8c0d Prepare ISQL to have unit tests. 2023-09-29 19:01:35 -03:00
GitHub Action
b9ae5aa643 increment build number 2023-09-29 20:13:52 +00:00
Adriano dos Santos Fernandes
9cf2385af1 Fix release upload of Windows installer. 2023-09-28 21:50:21 -03:00