You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let create_countries =
let country_alias_length = 3 in
[%rapper
execute
{sql|
CREATE TABLE countries(
id int PRIMARY KEY,
alias char( %int{country_alias_length} ),
name char(20),
time_created timestamp,
UNIQUE(alias)
)
|sql}
]
Produces the following error message:
Error in ppx_rapper: Syntax error in SQL: 'syntax error at or near "?"'
The text was updated successfully, but these errors were encountered:
The following code:
Produces the following error message:
The text was updated successfully, but these errors were encountered: