canonical / sqlair

Friendly type mapping for SQL databases
Apache License 2.0
17 stars 8 forks source link

Replace fullName with two seperate types #101

Closed Aflynn50 closed 9 months ago

Aflynn50 commented 10 months ago

fullName is replaced with two new types: typeName and columnName. This separation allows for more intuition when looking at type signatures throughout the codebase and enforces separation of the separate uses of fullName.

This change also moves the code from parts.go into parser.go since parts.go only contained type definitions.