Skip to content

Commit

Permalink
Drop namespace from sqlTableName
Browse files Browse the repository at this point in the history
Surely this won't introduce problems in the future..?
  • Loading branch information
SIMULATAN committed Jan 23, 2025
1 parent 0de302b commit 62c6024
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.jetbrains.exposed.sql.Column
import org.jetbrains.exposed.sql.Table

fun NodeDescriptor.sqlTableName(suffixName: String)
= "nodes:${namespace}.${name}:${suffixName}".quoted()
= "nodes:${name}:${suffixName}".quoted()

/**
* [4.1. Lexical Structure - 4.1.1. Identifiers and Key Words](https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS)
Expand Down

0 comments on commit 62c6024

Please sign in to comment.