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

53106 Commits

Author SHA1 Message Date
firebirds
80bf814885 increment build number 2017-10-26 00:03:13 +00:00
5b37da810c Fixed CORE-5650: Segfault when procedure dropped on classic server 2017-10-25 16:12:13 +03:00
firebirds
1aa78fe239 increment build number 2017-10-25 00:03:15 +00:00
8992446c4f Fixed CORE-5649: isc_add_user / isc_modify_user produce unusable user record 2017-10-24 17:12:20 +03:00
hvlad
5ef0c5bf24 Improvement CORE-5648 : Avoid serialization of isc_attach_database calls issued by EXECUTE STATEMENT implementation 2017-10-24 13:09:10 +03:00
firebirds
863865c9e1 increment build number 2017-10-24 00:03:21 +00:00
005d1565fe This should fix VC10 build - thanks to Adriano 2017-10-23 17:23:53 +03:00
Alexander Peshkov
f53c23c17a New interface Batch helping to efficiently implement JDBC prepared statement batches (#99)
Batch interface implementation
2017-10-23 17:10:49 +03:00
e8f65cb09d isc_random cleanup 2017-10-23 17:08:59 +03:00
firebirds
62a0eba48f increment build number 2017-10-18 00:03:13 +00:00
e5f712c33c Small docs addition 2017-10-17 14:14:53 +03:00
129f44b42d Minor fixes after proof-reading docs 2017-10-17 13:16:29 +03:00
firebirds
3df490cc74 increment build number 2017-10-17 00:03:11 +00:00
Adriano dos Santos Fernandes
1bc4e44d53 Fixed CORE-5638 - Wrong result with index on case-insensitive collation using NUMERIC-SORT. 2017-10-15 18:26:46 -02:00
firebirds
df0edb5425 increment build number 2017-10-14 00:09:13 +00:00
2d091651e3 Fixed gcc build: throw specifier is deprecated in c++11 2017-10-13 18:33:41 +03:00
hvlad
ce66904ebf Fixed warnings by VC14
warning C4595: 'operator new': non-member operator new or delete functions may not be declared inline
2017-10-13 15:58:38 +03:00
hvlad
c83f7e535b Update MSVC14 build. 2017-10-13 15:16:08 +03:00
hvlad
15204d1183 Fix incompatible compiler options for MSVC12 Win32\debug build 2017-10-13 15:14:14 +03:00
Adriano dos Santos Fernandes
8c3073e62a Merge pull request #119 from mariuz/patch-2
add B3_0_Release branch to travis
2017-10-13 07:59:00 -03:00
Popa Marius Adrian
468d7a0c20 add B3_0_Release branch to travis 2017-10-12 19:58:12 +03:00
firebirds
dcfad30100 increment build number 2017-10-04 00:03:19 +00:00
6198bc8ee1 High precision datatype support - Numeric(34,x) (#108)
* Raise underflow when close to 0 decfloat value casted to double
* High precision NUMERIC datatype based on DECFLOAT
* Fixed bulk insert mode in isql for decfloat values
* Enforce correct decQuad format after arithmetic operations
* Minimum docs for high precision NUMERIC/DECIMAL

* Some fixes of code suggested by Adriano:
- Use "const" keyword for Decimal128 constants declared internally
- Remove unneeded buffer initialization
- Remove unused function makeDecimalFixed()
- Follow firebird naming conventions to make code better readable and avoid possible conflicts with various .h files
- Added forgotten scale for DecimalFixed
2017-10-03 17:06:08 +03:00
firebirds
f0154f8822 increment build number 2017-09-29 00:04:01 +00:00
Adriano dos Santos Fernandes
6b8d5e16e8 Merge pull request #109 from FirebirdSQL/work/extern-libtomcrypt
Put libtomcrypt files in extern and use/build as libtommath in POSIX
2017-09-28 12:49:10 -03:00
Adriano dos Santos Fernandes
54e1a73dcd Add packages for travis build. 2017-09-28 15:13:44 +00:00
firebirds
8f713fddc2 increment build number 2017-09-28 00:03:14 +00:00
Adriano dos Santos Fernandes
e4b42bc37b Misc. 2017-09-27 19:08:56 -03:00
firebirds
8bb15346d5 increment build number 2017-09-23 00:03:17 +00:00
Artyom Smirnov
e02f60e3cd Fix crash on external engine trigger executing for transaction triggers (#110)
trg->relation can be null, so need checking
2017-09-22 15:46:01 +03:00
firebirds
9b52459289 increment build number 2017-09-21 00:03:16 +00:00
c1296050a6 Fixed CORE-5610: Provide info about database (or alias) which was in use during "Error during sweep: connection shutdown" 2017-09-20 13:08:38 +03:00
firebirds
cd7fdf653a increment build number 2017-09-17 00:04:55 +00:00
hvlad
953c753588 Improvement CORE-5614 : Physical backup merge stage could run too long, especially with huge page cache 2017-09-16 11:24:34 +03:00
hvlad
a60b19f881 Fixed bug CORE-5613 : SuperServer could hung when changing physical backup state under high load 2017-09-16 11:23:44 +03:00
hvlad
0d11d6ecad Remove libtomcrypt files from common.
Integrate libtomcrypt in extern into Windows build.
2017-09-14 15:55:48 +03:00
hvlad
0e89a3caf2 MSVC12 build for LibTomCrypt
libtomcrypt/libtomcrypt_MSVC12.vcxproj uses limited file set used by Firebird currently
libtomcrypt/libtomcrypt_full_MSVC12.vcxproj contains full library but requires some adjustment re. aes.c (it should be compiled twice)
MSVC10 and MSVC14 builds will follow
2017-09-14 15:54:01 +03:00
firebirds
56498c011e increment build number 2017-09-13 00:04:23 +00:00
Adriano dos Santos Fernandes
7226b545e7 More fixes for CORE-5606 - Add expression index name to exception message if computation failed. 2017-09-12 16:16:28 +00:00
firebirds
80be221310 increment build number 2017-09-12 00:04:26 +00:00
Adriano dos Santos Fernandes
f924ded403 Improvement CORE-5606 - Add expression index name to exception message if computation failed. 2017-09-11 16:42:11 +00:00
Adriano dos Santos Fernandes
4c73f4ac61 Misc. 2017-09-06 16:38:05 +00:00
Adriano dos Santos Fernandes
98702b9cda Make posix build use libtomcrypt from extern or system. 2017-09-06 16:35:40 +00:00
Adriano dos Santos Fernandes
24db8f62ac Customize algorithms imported from libtomcrypt. 2017-09-06 16:35:40 +00:00
Adriano dos Santos Fernandes
92f59d799b Do not build and run libtomcrypt tests. 2017-09-06 16:35:40 +00:00
Adriano dos Santos Fernandes
7907f1735f Change libtomcrypt includes to search first in its own files rather than system files. 2017-09-06 16:35:40 +00:00
Adriano dos Santos Fernandes
f85609ce17 Remove custom libtomcrypt from common and add to extern. 2017-09-06 16:35:40 +00:00
Adriano dos Santos Fernandes
3be49f502c Misc. 2017-09-06 16:35:40 +00:00
firebirds
ea2b34e3ca increment build number 2017-09-06 00:04:30 +00:00
85cabecae1 Fixed CORE-5605: Incorrect check for existing MAP in a case when pre-FB3 security database is used 2017-09-05 15:13:23 +03:00