Skip to content

Commit b5b65df

Browse files
committed
Fix #8112 - Error isc_read_only_trans (335544361) should report SQLSTATE 25006.
1 parent 77af75c commit b5b65df

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/include/firebird/impl/msg/jrd.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FB_IMPL_MSG(JRD, 37, open_trans, -901, "01", "002", "cannot disconnect database
3939
FB_IMPL_MSG(JRD, 38, port_len, -901, "HY", "000", "message length error (encountered @1, expected @2)")
4040
FB_IMPL_MSG(JRD, 39, read_only_field, -151, "42", "000", "attempted update of read-only column @1")
4141
FB_IMPL_MSG(JRD, 40, read_only_rel, -150, "42", "000", "attempted update of read-only table")
42-
FB_IMPL_MSG(JRD, 41, read_only_trans, -817, "42", "000", "attempted update during read-only transaction")
42+
FB_IMPL_MSG(JRD, 41, read_only_trans, -817, "25", "006", "attempted update during read-only transaction")
4343
FB_IMPL_MSG(JRD, 42, read_only_view, -150, "42", "000", "cannot update read-only view @1")
4444
FB_IMPL_MSG(JRD, 43, req_no_trans, -901, "25", "000", "no transaction for request")
4545
FB_IMPL_MSG(JRD, 44, req_sync, -901, "HY", "000", "request synchronization error")

src/msgs/sqlstates.sql

+3-2
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,13 @@ set bulk_insert INSERT INTO SQLSTATES (SQL_CLASS, SQL_SUBCLASS, SQL_STATE_TEXT)
9494
-- 23 Integrity Constraint Violation
9595
('23', '000', 'Integrity constraint violation')
9696
-- 24 Invalid Cursor State
97-
('24', '000', 'Invalid cursor state')
97+
('24', '000', 'Invalid cursor state')
9898
('24', '504', 'The cursor identified in the UPDATE, DELETE, SET, or GET statement is not positioned on a row')
9999
-- 25 Invalid Transaction State
100100
('25', '000', 'Invalid transaction state')
101+
('25', '006', 'Read-only SQL-transaction')
101102
('25', 'S01', 'Transaction state')
102-
('25', 'S02', 'Transaction is still active')
103+
('25', 'S02', 'Transaction is still active')
103104
('25', 'S03', 'Transaction is rolled back')
104105
-- 26 Invalid SQL Statement Name
105106
('26', '000', 'Invalid SQL statement name')

0 commit comments

Comments
 (0)