Skip to content

Commit d9f32c8

Browse files
fixed default for boolean option default
1 parent a515082 commit d9f32c8

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

doc/user/quick-sql-grammar.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,14 @@ Generate PL/SQL APIs on all tables for create, insert, update, delete and query.
229229
Adds an additional created, created_by, updated and updated_by columns to every
230230
table created.
231231

232+
### boolean
233+
234+
**Possible Values**: `yn`, `native`
235+
**Default Value**: `yn`
236+
237+
Adds an additional created, created_by, updated and updated_by columns to every
238+
table created.
239+
232240

233241
### compress
234242

test/small_tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ students
638638
finished_yn
639639
ok bool
640640
yes boolean
641-
#boolean:native`).getDDL();
641+
#db:"23c"`).getDDL();
642642

643643
assert( "0 < output.indexOf('is_legal boolean,')" );
644644
assert( "0 < output.indexOf('finished_yn boolean,')" );
@@ -648,7 +648,7 @@ students
648648
// https://github.com/oracle/quicksql/issues/51
649649
output = new quicksql(`boolvalues
650650
ok bool
651-
#db:"23c"`).getDDL();
651+
#boolean:native`).getDDL();
652652
assert( "0 < output.indexOf('ok boolean')" );
653653

654654
// https://github.com/oracle/quicksql/issues/55

0 commit comments

Comments
 (0)