Hi all! Is there a way to use the fluent syntax to get at a column that's named through a schema/table/column fully qualified path?
> Sequel.version => "4.25.0" > puts RDB[:x].select(:a__b__c___d).sql SELECT "a"."b__c" AS "d" FROM "x" # I expected: # SELECT "a"."b"."c" AS "d" FROM "x" I'm using the PostgreSQL driver. Thanks! François PS: cross posted to StackOverflow: https://stackoverflow.com/questions/33960601/how-to-select-schema-table-column-in-sequel-using-the-shortcut-syntax -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/d/optout.
