Skip to content

Commit 867a8d0

Browse files
committed
Including the BOOLEAN field type in the InterBase field types list
1 parent 503af9f commit 867a8d0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

interbase/schema.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
IBT_SQL_TIME = 13
5151
IBT_SQL_TIMESTAMP = 35
5252
IBT_BIGINT = 16
53+
IBT_BOOLEAN = 17
5354

5455
MAX_INTSUBTYPES = 2
5556
MAX_BLOBSUBTYPES = 8
@@ -72,7 +73,8 @@
7273
IBT_SQL_TIME: 'TIME',
7374
IBT_SQL_DATE: 'DATE',
7475
IBT_SQL_TIMESTAMP: 'TIMESTAMP',
75-
IBT_BIGINT: 'BIGINT'
76+
IBT_BIGINT: 'BIGINT',
77+
IBT_BOOLEAN: 'BOOLEAN',
7678
}
7779
INTEGRAL_SUBTYPES = ('UNKNOWN', 'NUMERIC', 'DECIMAL')
7880
BLOB_SUBTYPES = ('BINARY', 'TEXT', 'BLR', 'ACL', 'RANGES', 'SUMMARY',

0 commit comments

Comments
 (0)