Closed pietermartin closed 5 years ago
the drop() gremlin statement translates in the simple case to a TRUNCATE ONLY statement. The ONLY part does not work on partitioned tables so I am simply going to remove it as its not necessary for Sqlg.
drop()
TRUNCATE ONLY
ONLY
Fixed in commit https://github.com/pietermartin/sqlg/commit/f84c31039ac7856974b07c508106f4a593d54436
the
drop()
gremlin statement translates in the simple case to aTRUNCATE ONLY
statement. TheONLY
part does not work on partitioned tables so I am simply going to remove it as its not necessary for Sqlg.