We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
truncate
It seems to me from the examples bit of the postgres docs for truncate that postgres accepts multiple tables to truncate, whereas honey does not?
=# create table t1 (id int); CREATE TABLE =# create table t2 (id int); CREATE TABLE =# insert into t1 values (1); INSERT 0 1 =# insert into t2 values (2); INSERT 0 1 =# select * from t1; id ---- 1 (1 row) =# select * from t2; id ---- 2 (1 row) =# truncate t1, t2; TRUNCATE TABLE =# select * from t1; id ---- (0 rows) =# select * from t2; id ---- (0 rows) =#
It would be nice if honeysql supported this. Not at all important, as workarounds are available :)
The text was updated successfully, but these errors were encountered:
seancorfield
No branches or pull requests
It seems to me from the examples bit of the postgres docs for truncate that postgres accepts multiple tables to truncate, whereas honey does not?
It would be nice if honeysql supported this. Not at all important, as workarounds are available :)
The text was updated successfully, but these errors were encountered: