Skip to content

Commit

Permalink
bugfix: fix table name
Browse files Browse the repository at this point in the history
  • Loading branch information
kasiaMarek committed Mar 26, 2024
1 parent ab3e722 commit 94668e8
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -230,7 +230,7 @@ final class JarTopLevels(conn: () => Connection) {
val statement1 = conn().prepareStatement("truncate table toplevel_symbol")
statement1.execute()
val statement2 =
conn().prepareStatement("truncate table type_hierarchy_jar")
conn().prepareStatement("truncate table type_hierarchy")
statement2.execute()
val statement3 = conn().prepareStatement("delete from indexed_jar")
statement3.execute()
Expand Down

0 comments on commit 94668e8

Please sign in to comment.